Exemplo n.º 1
0
 public ProjectController(
     IExcelManager excelManager,
     ICacheManager cacheManager,
     IWorkContext workContext,
     IWebEventService webLogger,
     IReservationService reservationService,
     INodeInReservationService nodesInReservationService,
     IProjectService projectService,
     INoteService noteService,
     IUserService userService,
     IRoleService roleService,
     IEntitiesInRoleService entitiesInRoleService,
     IAreaService areaService,
     INoticeService noticeService,
     INoticeInUserService noticeInUserService)
 {
     this._excelManager              = excelManager;
     this._cacheManager              = cacheManager;
     this._workContext               = workContext;
     this._webLogger                 = webLogger;
     this._reservationService        = reservationService;
     this._nodesInReservationService = nodesInReservationService;
     this._projectService            = projectService;
     this._noteService               = noteService;
     this._userService               = userService;
     this._roleService               = roleService;
     this._entitiesInRoleService     = entitiesInRoleService;
     this._areaService               = areaService;
     this._noticeService             = noticeService;
     this._noticeInUserService       = noticeInUserService;
 }
Exemplo n.º 2
0
 public ApiWorkContext(
     ICacheManager cacheManager,
     IAreaService areaService,
     IStationService stationService,
     IStationTypeService stationTypeService,
     IRoomService roomService,
     IRoomTypeService roomTypeService,
     IDeviceService deviceService,
     IDeviceTypeService deviceTypeService,
     IFsuService fsuService,
     IPointService pointService,
     ILogicTypeService logicTypeService,
     ISCVendorService vendorService,
     ISignalService signalService,
     IAAlarmService aalarmService,
     IHAlarmService halarmService,
     IAMeasureService ameasureService,
     IHMeasureService hmeasureService,
     IRoleService roleService,
     IEntitiesInRoleService authService,
     IUserService userService,
     IGroupService groupService)
 {
     this._cacheManager       = cacheManager;
     this._areaService        = areaService;
     this._stationService     = stationService;
     this._stationTypeService = stationTypeService;
     this._roomService        = roomService;
     this._roomTypeService    = roomTypeService;
     this._deviceService      = deviceService;
     this._deviceTypeService  = deviceTypeService;
     this._fsuService         = fsuService;
     this._pointService       = pointService;
     this._logicTypeService   = logicTypeService;
     this._vendorService      = vendorService;
     this._signalService      = signalService;
     this._aalarmService      = aalarmService;
     this._halarmService      = halarmService;
     this._ameasureService    = ameasureService;
     this._hmeasureService    = hmeasureService;
     this._roleService        = roleService;
     this._authService        = authService;
     this._userService        = userService;
     this._groupService       = groupService;
 }