Exemplo n.º 1
0
 public ProcessStepService(IProductionProcessService processservice, IRepositoryAsync <ProcessStep> repository, IDataTableImportMappingService mappingservice)
     : base(repository)
 {
     _repository     = repository;
     _mappingservice = mappingservice;
     _processservice = processservice;
 }
Exemplo n.º 2
0
 public BOMComponentService(IProductionProcessService processservice, ISKUService iskuservice, IRepositoryAsync <BOMComponent> repository, IDataTableImportMappingService mappingservice)
     : base(repository)
 {
     _repository     = repository;
     _mappingservice = mappingservice;
     _iskuservice    = iskuservice;
     _processservice = processservice;
 }
 public ProductionProcessesController (IProductionProcessService  productionProcessService, IUnitOfWorkAsync unitOfWork)
 {
     _productionProcessService  = productionProcessService;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 4
0
 public ProductionProcessesController(IProductionProcessService productionProcessService, IUnitOfWorkAsync unitOfWork)
 {
     _productionProcessService = productionProcessService;
     _unitOfWork = unitOfWork;
 }