コード例 #1
0
 public ApplicationService(
     ICvStorageService cvStorageService,
     IApplicationsViewHistoriesService applicationsViewHistoriesService,
     IMapper mapper,
     ILogger <ApplicationService> logger,
     IStringLocalizer <ApplicationService> stringLocalizer,
     ApplicationDbContext context)
 {
     _cvStorageService = cvStorageService;
     _applicationsViewHistoriesService = applicationsViewHistoriesService;
     _mapper          = mapper;
     _logger          = logger;
     _stringLocalizer = stringLocalizer;
     _context         = context;
 }
コード例 #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;
 }