public MontagesSupplyRequestController(IMontageSupplyRequestService componentsSupplyRequestService, ITaskService taskService, ILogService logService, IMontageService componentService)
 {
     _montageSupplyRequestService = componentsSupplyRequestService;
     _logService     = logService;
     _montageService = componentService;
     _taskService    = taskService;
 }
示例#2
0
 public SupplyRequestService(IMontageSupplyRequestService montageSupplyRequestService, IDesignSupplyRequestService designSupplyRequestService)
 {
     _montageSupplyRequestService = montageSupplyRequestService;
     _designSupplyRequestService  = designSupplyRequestService;
 }