public UserSettingsController(IUnitOfWork _unitOfWork, IImagePath imagePath, UserManager <ApplicationUser> userManager, IHostingEnvironment env) : base(_unitOfWork)
 {
     _imagePath         = imagePath;
     _userManager       = userManager;
     _env               = env;
     Now                = BaseHelper.UserGeo().UserDateTime;
     Today              = Now.Date;
     Tommorow           = Today.AddDays(1);
     FirstDayOfTheMonth = new DateTime(Today.Year, Today.Month, 1);
     LastDayOfTheMonth  = FirstDayOfTheMonth.AddMonths(1).AddDays(-1);
 }
示例#2
0
 public ManualAttendanceController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#3
0
 public OwnersEquityController(IUnitOfWork work, IImagePath imagePath) : base(work)
 {
     _work      = work;
     _imagePath = imagePath;
 }
示例#4
0
 public ProductsController(IUnitOfWork work, IImagePath imagePath)
 {
     _work      = work;
     _imagePath = imagePath;
 }
示例#5
0
 public SalaryStructureController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _db        = _unitOfWork;
     _imagePath = imagePath;
 }
示例#6
0
 public LoginHistoryController(IUnitOfWork _unitOfWork, IImagePath imagePath, UserManager <ApplicationUser> userManager, IHostingEnvironment env) : base(_unitOfWork)
 {
     _imagePath   = imagePath;
     _userManager = userManager;
     _env         = env;
 }
 public DivisionalHeadController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#8
0
 public AboutUsesController(IUnitOfWork work, ApplicationDbContext context, IImagePath imagePath)
 {
     _work      = work;
     _context   = context;
     _imagePath = imagePath;
 }
示例#9
0
 public WhyChooseUsController(IUnitOfWork work, IImagePath imagePath)
 {
     _work      = work;
     _imagePath = imagePath;
 }
 public SoftwaresCategoriesController(IUnitOfWork work, IImagePath imagePath)
 {
     _work      = work;
     _imagePath = imagePath;
 }
示例#11
0
 public DepartmentalHeadController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#12
0
 public SuspendedController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#13
0
 public SchemesController(IUnitOfWork work, IImagePath imagePath) : base(work)
 {
     _work = work;
     _imagePath = imagePath;
 }
示例#14
0
 public EmployeFileController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#15
0
 public CompanyHeadController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _db        = _unitOfWork;
     _imagePath = imagePath;
 }
        public ServiceCategoriesController(IUnitOfWork work, IImagePath imagepath)
        {
            _work = work;

            _imagePath = imagepath;
        }
 public ManualAbsentController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#18
0
 public TerminationController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#19
0
 public ClientsController(IUnitOfWork work, IImagePath imagePath, AppDbContext context)
 {
     _work      = work;
     _imagePath = imagePath;
     _context   = context;
 }
示例#20
0
 public EarlyOutPermissionController(IUnitOfWork _unitOfWork, IHostingEnvironment env, IImagePath imagePath) : base(_unitOfWork)
 {
     _env       = env;
     _imagePath = imagePath;
 }
 public ProductCategoriesController(ApplicationDbContext context, IImagePath imagePath)
 {
     _context   = context;
     _imagePath = imagePath;
 }
示例#22
0
 public ManagerController(AppDbContext context, IUnitOfWork work, IImagePath imagePath)
 {
     _context   = context;
     _work      = work;
     _imagePath = imagePath;
 }
示例#23
0
 public NotificationController(IUnitOfWork _unitOfWork, UserManager <ApplicationUser> userManager, IImagePath imagePath) : base(
         _unitOfWork)
 {
     _userManager = userManager;
     _imagePath   = imagePath;
 }
示例#24
0
 public BusinessTravelController(IUnitOfWork _unitOfWork, IHostingEnvironment env, IImagePath imagePath) : base(_unitOfWork)
 {
     _env       = env;
     _imagePath = imagePath;
 }
 public SisterConcernHeadController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
示例#26
0
 public BranchHeadController(IUnitOfWork _unitOfWork, IImagePath imagePath) : base(_unitOfWork)
 {
     _imagePath = imagePath;
 }
 public ProductCategoriesController(IUnitOfWork work, IImagePath imagePath) : base(work)
 {
     _work      = work;
     _imagePath = imagePath;
 }
 public LatePermissionController(IUnitOfWork _unitOfWork, IUnitOfWork db, IHostingEnvironment env, IImagePath imagePath) : base(_unitOfWork)
 {
     this.db    = db;
     _env       = env;
     _imagePath = imagePath;
 }
示例#29
0
 public BlogsController(IUnitOfWork work, IImagePath imagepath)
 {
     _work      = work;
     _imagePath = imagepath;
 }
示例#30
0
 public ReservationsController(IUnitOfWork work, IImagePath imagepath, ApplicationDbContext context)
 {
     _context   = context;
     _work      = work;
     _imagePath = imagepath;
 }