示例#1
0
 public TodayController(IHubContext <MyChatHub> context,
                        IWorkAppService workAppService,
                        IArticleRecordAppService articleRecordAppService,
                        IBoxRecordAppService boxRecordAppService,
                        IVehicleRecordAppService vehicleRecordAppService)
 {
     _context                 = context;
     _workAppService          = workAppService;
     _articleRecordAppService = articleRecordAppService;
     _boxRecordAppService     = boxRecordAppService;
     _vehicleRecordAppService = vehicleRecordAppService;
 }
示例#2
0
 public BoxWorkController(IBoxRecordAppService recordAppService, IWorkAppService workAppService, IRouteAppService routeAppService)
 {
     _recordAppService = recordAppService;
     _routeAppService  = routeAppService;
     _workAppService   = workAppService;
 }