Пример #1
0
 public ProductionOrderController(ERPSolutionContext context)
 {
     this._context          = context;
     productionOrderService = new ProductionOrderService(_context);
 }
Пример #2
0
 public BaseService(ERPSolutionContext context)
 {
     this._context = context;
 }
Пример #3
0
 public ProductionOrderService(ERPSolutionContext context) : base(context)
 {
 }
Пример #4
0
 public UserService(ERPSolutionContext context) : base(context)
 {
 }
Пример #5
0
 public LoginController(ERPSolutionContext context)
 {
     this._context = context;
     userService   = new UserService(_context);
 }