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