Exemplo n.º 1
0
 public ApplicationStageController(IMapper mapper,
                                   ILogger <ApplicationStageController> logger,
                                   ICvStorageService cvStorageService,
                                   IApplicationStageService applicationStageService,
                                   IEmailSender emailSender,
                                   IStringLocalizer <ApplicationStageController> stringLocalizer,
                                   ApplicationDbContext context,
                                   UserManager <ApplicationUser> userManager)
 {
     _mapper                  = mapper;
     _logger                  = logger;
     _cvStorageService        = cvStorageService;
     _applicationStageService = applicationStageService;
     _emailSender             = emailSender;
     _stringLocalizer         = stringLocalizer;
     _context                 = context;
     _userManager             = userManager;
 }
Exemplo n.º 2
0
 public MyApplicationService(
     IMapper mapper,
     ILogger <MyApplicationService> logger,
     ICvStorageService cvStorageService,
     IQueueMessageSenderService queueMessageSenderService,
     IApplicationStageService applicationStageService,
     IApplicationsViewHistoriesService applicationsViewHistoriesService,
     IStringLocalizer <MyApplicationService> stringLocalizer,
     ApplicationDbContext context)
 {
     _mapper                           = mapper;
     _logger                           = logger;
     _cvStorageService                 = cvStorageService;
     _queueMessageSenderService        = queueMessageSenderService;
     _applicationStageService          = applicationStageService;
     _applicationsViewHistoriesService = applicationsViewHistoriesService;
     _stringLocalizer                  = stringLocalizer;
     _context                          = context;
 }