Пример #1
0
 public OrderController(ApplicationDbContext context, IOrderService orderService, IOrderMessageService orderMessageService, ILabworksService labworksService, IFinancialService financialService, IOptions <AppSettings> appSettings)
 {
     _context             = context;
     _orderService        = orderService;
     _orderMessageService = orderMessageService;
     _labworksService     = labworksService;
     _financialService    = financialService;
     _appSettings         = appSettings.Value;
 }
Пример #2
0
 public LabController(ApplicationDbContext dbContext, IOrderService orderService, ILabworksService labworksService, IOrderMessageService orderMessageService, IFileStorageService fileStorageService, ISlothService slothService)
 {
     _dbContext           = dbContext;
     _orderService        = orderService;
     _labworksService     = labworksService;
     _orderMessageService = orderMessageService;
     _fileStorageService  = fileStorageService;
     _slothService        = slothService;
 }
Пример #3
0
 public AccountController(
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     IEmailSender emailSender,
     IDirectorySearchService directorySearchService,
     ILogger <AccountController> logger,
     ILabworksService labworksService)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _emailSender            = emailSender;
     _directorySearchService = directorySearchService;
     _logger          = logger;
     _labworksService = labworksService;
 }
Пример #4
0
 public AccountController(
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     IEmailSender emailSender,
     IDirectorySearchService directorySearchService,
     ILogger <AccountController> logger,
     ILabworksService labworksService,
     IOptions <AppSettings> appSettings)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _emailSender            = emailSender;
     _directorySearchService = directorySearchService;
     _logger          = logger;
     _labworksService = labworksService;
     _appSettings     = appSettings.Value;
 }
Пример #5
0
 public TestItemsController(ApplicationDbContext context, ILabworksService labworksService)
 {
     _context         = context;
     _labworksService = labworksService;
 }
Пример #6
0
 public OrderService(ApplicationDbContext context, ILabworksService labworksService, IOptions <AppSettings> appSettings)
 {
     _context         = context;
     _labworksService = labworksService;
     _appSettings     = appSettings.Value;
 }