Exemplo n.º 1
0
 public ProductionController(UserManager <ApplicationUser> userManager, IIsolatorService isolatorService, IProductionService productionService, ILookupService lookupService, IBusinessService _businessService) : base(userManager, _businessService)
 {
     _isolatorService   = isolatorService;
     _productionService = productionService;
     this.lookupService = lookupService;
     businessService    = _businessService;
 }
Exemplo n.º 2
0
 public ProductionService(IRepository repository, IIsolatorService isolatorService, IShiftService shiftService)
 {
     _repository      = repository;
     _isolatorService = isolatorService;
     _shiftService    = shiftService;
 }
Exemplo n.º 3
0
 public IsolatorController(UserManager <ApplicationUser> userManager, IIsolatorService isolatorService, ILookupService lookupService, IBusinessService _businessService) : base(userManager, _businessService)
 {
     this.isolatorService = isolatorService;
     this.lookupService   = lookupService;
     businessService      = _businessService;
 }