public MontagesSupplyRequestController(IMontageSupplyRequestService componentsSupplyRequestService, ITaskService taskService, ILogService logService, IMontageService componentService)
 {
     _montageSupplyRequestService = componentsSupplyRequestService;
     _logService     = logService;
     _montageService = componentService;
     _taskService    = taskService;
 }
示例#2
0
 public ReportsController(IReportService reportService, IMontageService montageService, IDesignService designService, IDeviceService deviceService)
 {
     _reportService  = reportService;
     _montageService = montageService;
     _designService  = designService;
     _deviceService  = deviceService;
 }
 public TaskService(IUnitOfWork uow) : base(uow)
 {
     _deviceService     = new DeviceService(uow);
     _montageService    = new MontageService(uow);
     _designService     = new DesignService(uow);
     _currentRepository = _db.TaskRepository;
 }
 public MontageSupplyRequestService(IUnitOfWork uow) : base(uow)
 {
     _montageService    = new MontageService(uow);
     _currentRepository = _db.MontageSupplyRequestRepository;
 }
 public MontagesController(IMontageService montageService, IDeviceService deviceService) : base(montageService, deviceService)
 {
 }
 public DevicesController(IDeviceService deviceService, IMontageService montageService, IDesignService designService)
 {
     _deviceService  = deviceService;
     _montageService = montageService;
     _designService  = designService;
 }