Exemplo n.º 1
0
 public UserService(IDatabaseQueryService dbQueryService, AbstractNotificationService notificationService,
                    string hostname, EmailService emailService, AbstractAPIKeyService apiKeyService)
 {
     _dbQueryService      = dbQueryService;
     _hostname            = hostname;
     _emailService        = emailService;
     _notificationService = notificationService;
     _apiKeyService       = apiKeyService;
 }
Exemplo n.º 2
0
 public AlertService(IDatabaseQueryService dbQueryService, AbstractCameraService cameraService, AbstractNotificationService notificationService)
 {
     _dbQueryService      = dbQueryService;
     _cameraService       = cameraService;
     _notificationService = notificationService;
 }