Esempio n. 1
0
 public ServerStatusCheckerJob(IHeartbeatService hearbeat, IStoreServerService iStoreServerService)
 {
     if (hearbeat == null)
     {
         throw new ArgumentNullException(nameof(hearbeat));
     }
     _hearbeat = hearbeat;
     this._IStoreServerService = iStoreServerService;
 }
 public DashBoardJob(IStoreServerService iStoreServerService, IMapper mapper, ILifetimeScope scope)
 {
     this._IStoreServerService = iStoreServerService;
     _mapper   = mapper;
     _jobScope = scope.BeginLifetimeScope();
 }
 public InStoreServerController(IStoreServerService iStoreService)
 {
     _iStoreService = iStoreService;
 }
Esempio n. 4
0
 public HeartbeatJob(IStoreServerService iStoreServerService)
 {
     this._IStoreServerService = iStoreServerService;
 }
 public DashBoardHub(IStoreServerService iStoreServerService, IMapper mapper, ILifetimeScope lifetimeScope)
 {
     this._IStoreServerService = iStoreServerService;
     _mapper           = mapper;
     _hubLifetimeScope = lifetimeScope.BeginLifetimeScope();
 }
Esempio n. 6
0
 public HomeController(IStoreServerService iStoreServerService, IMapper mapper)
 {
     this._IStoreServerService = iStoreServerService;
     _mapper = mapper;
 }