예제 #1
0
 public MyApplicationController(
     IMyApplicationService myApplicationService,
     ICvStorageService cvStorageService,
     IMapper mapper,
     IStringLocalizer <MyApplicationController> stringLocalizer,
     UserManager <ApplicationUser> userManager,
     ApplicationDbContext context)
 {
     _myApplicationService = myApplicationService;
     _cvStorageService     = cvStorageService;
     _mapper          = mapper;
     _stringLocalizer = stringLocalizer;
     _userManager     = userManager;
     _context         = context;
 }
예제 #2
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;
 }
예제 #3
0
 public AdminController(UserManager <ApplicationUser> userManager,
                        RoleManager <IdentityRole> roleManager,
                        ApplicationDbContext context,
                        ICvStorageService cvStorageService,
                        ILogger <AdminController> logger,
                        IStringLocalizer <AdminController> stringLocalizer,
                        IMapper mapper)
 {
     _userManager      = userManager;
     _roleManager      = roleManager;
     _context          = context;
     _cvStorageService = cvStorageService;
     _logger           = logger;
     _stringLocalizer  = stringLocalizer;
     _mapper           = mapper;
 }
예제 #4
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;
 }
예제 #5
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;
 }