public HomeController(ILogger <HomeController> logger, IHourPointsRepository hourPointsRepository, UserManager <TimeNotesUser> userManager, IHourPointConfigurationsRepository hourPointConfigurationsRepository)
 {
     _logger = logger;
     _hourPointsRepository = hourPointsRepository;
     _userManager          = userManager;
     _hourPointConfigurationsRepository = hourPointConfigurationsRepository;
 }
 public HourPointConfigurationsController(UserManager <TimeNotesUser> userManager,
                                          IHourPointConfigurationsRepository hourPointConfigurationsRepository,
                                          IMapper mapper, RedisCache cache)
 {
     _userManager = userManager;
     _hourPointConfigurationsRepository = hourPointConfigurationsRepository;
     _mapper = mapper;
     _cache  = cache;
 }
Example #3
0
 public HourPointsController(HourPointsServices hourPointsServices,
                             IHourPointsRepository hourPointsRepository,
                             IHourPointConfigurationsRepository hourPointConfigurationsRepository,
                             UserManager <TimeNotesUser> userManager,
                             IMapper mapper, ExcelExport <HourPointsModel> excelExport)
 {
     _hourPointsServices   = hourPointsServices;
     _hourPointsRepository = hourPointsRepository;
     _hourPointConfigurationsRepository = hourPointConfigurationsRepository;
     _userManager = userManager;
     _mapper      = mapper;
     _excelExport = excelExport;
 }
Example #4
0
 public HourPointsServices(IHourPointsRepository hourPointsRepository, IHourPointConfigurationsRepository hourPointConfigurationsRepository)
 {
     _hourPointsRepository = hourPointsRepository;
     _hourPointConfigurationsRepository = hourPointConfigurationsRepository;
 }