示例#1
0
 public OrderService(IAssemblyPlanService assemblyservice, IPurchasePlanService purchaseservice, IRepositoryAsync <OrderDetail> orderdetailrepository, IRepositoryAsync <Order> repository, IRepositoryAsync <ProjectNode> projectnoderepository, IOrderAuditPlanService auditplanService, IRepositoryAsync <BOMComponent> bomrepository, IProductionPlanService productionplanservice)
     : base(repository)
 {
     _repository            = repository;
     _projectnoderepository = projectnoderepository;
     _auditplanService      = auditplanService;
     _bomrepository         = bomrepository;
     _productionplanservice = productionplanservice;
     _orderdetailrepository = orderdetailrepository;
     _purchaseservice       = purchaseservice;
     _assemblyservice       = assemblyservice;
 }
 public OrderAuditPlansController(IOrderAuditPlanService orderAuditPlanService, IUnitOfWorkAsync unitOfWork)
 {
     _orderAuditPlanService = orderAuditPlanService;
     _unitOfWork            = unitOfWork;
 }
 public OrderAuditPlansController (IOrderAuditPlanService  orderAuditPlanService, IUnitOfWorkAsync unitOfWork)
 {
     _orderAuditPlanService  = orderAuditPlanService;
     _unitOfWork = unitOfWork;
 }