示例#1
0
 public WorkCenterBeforeController(
     IWorkCenterService workCenterService,
     IAuthService authService
     )
 {
     this.workCenterService = workCenterService;
     this.authService = authService;
 }
示例#2
0
 public ProcessingController(IWorkCenterService workCenterService, IAXService axService)
 {
     this.workCenterService = workCenterService;
     this.axService = axService;
 }
示例#3
0
 public WorkCenterController(IWorkCenterService workCenterService)
 {
     _workCenterService = workCenterService;
 }