Ejemplo n.º 1
0
 public ProductionOrderController(ERPSolutionContext context)
 {
     this._context          = context;
     productionOrderService = new ProductionOrderService(_context);
 }
Ejemplo n.º 2
0
 public BaseService(ERPSolutionContext context)
 {
     this._context = context;
 }
Ejemplo n.º 3
0
 public ProductionOrderService(ERPSolutionContext context) : base(context)
 {
 }
Ejemplo n.º 4
0
 public UserService(ERPSolutionContext context) : base(context)
 {
 }
Ejemplo n.º 5
0
 public LoginController(ERPSolutionContext context)
 {
     this._context = context;
     userService   = new UserService(_context);
 }