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;
 }
示例#2
0
 public ProductionService(IRepository repository, IIsolatorService isolatorService, IShiftService shiftService)
 {
     _repository      = repository;
     _isolatorService = isolatorService;
     _shiftService    = shiftService;
 }
示例#3
0
 public IsolatorController(UserManager <ApplicationUser> userManager, IIsolatorService isolatorService, ILookupService lookupService, IBusinessService _businessService) : base(userManager, _businessService)
 {
     this.isolatorService = isolatorService;
     this.lookupService   = lookupService;
     businessService      = _businessService;
 }