示例#1
0
 public HealthCheckPort(
     IRepositoryContext <DeviceDb> repoContext,
     IHealthCheckRepository healthCheckRepo)
 {
     _repoContext     = repoContext;
     _healthCheckRepo = healthCheckRepo;
 }
示例#2
0
 public void Dispose()
 {
     _users              = null;
     _userClaims         = null;
     _histories          = null;
     _activities         = null;
     _posts              = null;
     _attachments        = null;
     _customers          = null;
     _jobcards           = null;
     _healthChecks       = null;
     _healthCheckDetails = null;
     _branches           = null;
     _appLogs            = null;
     _context.Dispose();
 }
示例#3
0
 public HealthCheckController(IWebhookHandler webhookHandler, IHealthCheckRepository healthCheckRepository)
 {
     _webhookHandler        = webhookHandler;
     _healthCheckRepository = healthCheckRepository;
 }
示例#4
0
 public HealthCheckService(IHealthCheckRepository repository)
 {
     this.repository = repository;
 }
示例#5
0
 public HealthCheckService(IHealthCheckRepository healthCheckRepository)
 {
     _healthCheckRepository = healthCheckRepository;
 }
示例#6
0
 public HealthCheckController(IHealthCheckRepository HealthCheckRepository)
 {
     this.HealthCheckRepository = HealthCheckRepository;
 }
 public BackgroundReportingService(IWebhookHandler webhookHandler, IHealthCheckRepository healthCheckRepository)
 {
     _webhookHandler        = webhookHandler;
     _healthCheckRepository = healthCheckRepository;
 }
示例#8
0
 public HealthCheckController(IHealthCheckRepository healthCheckRepository)
 {
     _healthCheckRepository = healthCheckRepository;
 }