Example #1
0
 public LabCourseController(AuthenticationService authenticationService, LogService logService, UserService userService, LabGroupService labGroupService, LabCourseService labCourseService)
 {
     _authenticationService = authenticationService;
     _logService            = logService;
     _userService           = userService;
     _labGroupService       = labGroupService;
     _labCourseService      = labCourseService;
 }
 public LogViewController(AuthenticationService authenticationService, LogViewService logViewService, LabGroupService labGroupService, OrderService orderService, SupplierService supplierService)
 {
     _authenticationService = authenticationService;
     _logViewService        = logViewService;
     _labGroupService       = labGroupService;
     _orderService          = orderService;
     _supplierService       = supplierService;
 }
Example #3
0
 public BudgetRequestController(IWebHostEnvironment hostEnvironment, AuthenticationService authenticationService, LogService logService, BudgetRequestService budgetRequestService, LabGroupService labGroupService, UserService userService)
 {
     _hostEnvironment       = hostEnvironment;
     _authenticationService = authenticationService;
     _logService            = logService;
     _budgetRequestService  = budgetRequestService;
     _labGroupService       = labGroupService;
     _userService           = userService;
 }
Example #4
0
 public OrderController(IWebHostEnvironment hostEnvironment, AuthenticationService authenticationService, OrderService orderService, LogService logService, LabGroupService labGroupService, SupplierService supplierService, UserService userService)
 {
     _hostEnvironment       = hostEnvironment;
     _authenticationService = authenticationService;
     _orderService          = orderService;
     _logService            = logService;
     _labGroupService       = labGroupService;
     _supplierService       = supplierService;
     _userService           = userService;
 }
 public QuizQuestionController(AuthenticationService authenticationService, LogService logService, UserService userService, LabGroupService labGroupService, LabCourseService labCourseService, QuizQuestionService quizQuestionService, TokenService tokenService)
 {
     _authenticationService = authenticationService;
     _logService            = logService;
     _userService           = userService;
     _labGroupService       = labGroupService;
     _labCourseService      = labCourseService;
     _quizQuestionService   = quizQuestionService;
     _tokenService          = tokenService;
 }