public AlexaController(RedisCache cache, HourPointsServices hourPointsServices, UserManager <TimeNotesUser> userManager, ILogger <AlexaController> logger)
 {
     _cache = cache;
     _hourPointsServices = hourPointsServices;
     _userManager        = userManager;
     _logger             = logger;
 }
Exemple #2
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;
 }