Example #1
0
 public DashboardService(
     IEpcRepository <CheckLogEntity> _logRepo,
     IEpcRepository <CheckLogItemEntity> _logItemRepo)
 {
     this._logRepo     = _logRepo;
     this._logItemRepo = _logItemRepo;
 }
Example #2
0
 public CalendarService(
     IEpcRepository <CalendarEventEntity> _calendarRepo,
     IEpcRepository <EventDeviceEntity> _eventDeviceRepo)
 {
     this._calendarRepo    = _calendarRepo;
     this._eventDeviceRepo = _eventDeviceRepo;
 }
Example #3
0
 public DeviceService(
     IEpcRepository <DeviceEntity> _deviceRepo,
     IEpcRepository <DeviceParameterEntity> _deviceParamRepo)
 {
     this._deviceRepo      = _deviceRepo;
     this._deviceParamRepo = _deviceParamRepo;
 }
Example #4
0
 public PageService(
     IEpcRepository <PageEntity> _pageRepo,
     IEpcRepository <DeviceEntity> _deviceRepo)
 {
     this._pageRepo   = _pageRepo;
     this._deviceRepo = _deviceRepo;
 }
Example #5
0
 public IssueService(
     IEpcRepository <IssueEntity> _issueRepo,
     IEpcRepository <IssueOperationLogEntity> _issueOperaRepo,
     IMSRepository <UserEntity> _userRepo)
 {
     this._issueRepo      = _issueRepo;
     this._issueOperaRepo = _issueOperaRepo;
     this._userRepo       = _userRepo;
 }
Example #6
0
 public CheckLogServiceBase(
     IEpcRepository <CheckLogEntity> _logRepo,
     IEpcRepository <CheckLogItemEntity> _logItemRepo,
     IEpcRepository <DeviceParameterEntity> _paramRepo,
     IEpcRepository <DeviceEntity> _deviceRepo,
     IMSRepository <UserEntity> _userRepo)
 {
     this._logRepo     = _logRepo;
     this._logItemRepo = _logItemRepo;
     this._paramRepo   = _paramRepo;
     this._deviceRepo  = _deviceRepo;
     this._userRepo    = _userRepo;
 }
Example #7
0
 public CalendarService(
     IEpcRepository <CalendarEventEntity> _calendarRepo)
 {
     this._calendarRepo = _calendarRepo;
 }