Exemplo n.º 1
0
 public AccessController(IDataService dataService, ImageStore imageStore, ProgenyDbContext context, AzureNotifications azureNotifications)
 {
     _dataService        = dataService;
     _imageStore         = imageStore;
     _context            = context;
     _azureNotifications = azureNotifications;
 }
Exemplo n.º 2
0
 public VideosController(MediaDbContext context, ProgenyDbContext progenyDbContext, IDataService dataService, AzureNotifications azureNotifications)
 {
     _context            = context;
     _progenyDbContext   = progenyDbContext;
     _dataService        = dataService;
     _azureNotifications = azureNotifications;
 }
Exemplo n.º 3
0
 public ContactsController(ProgenyDbContext context, ImageStore imageStore, IDataService dataService, AzureNotifications azureNotifications)
 {
     _context            = context;
     _imageStore         = imageStore;
     _dataService        = dataService;
     _azureNotifications = azureNotifications;
 }
Exemplo n.º 4
0
 public VaccinationsController(ProgenyDbContext context, IDataService dataService, AzureNotifications azureNotifications)
 {
     _context            = context;
     _dataService        = dataService;
     _azureNotifications = azureNotifications;
 }
Exemplo n.º 5
0
 public RegisterController(AzureNotifications azureNotifications)
 {
     _azureNotifications = azureNotifications;
     hub = _azureNotifications.Hub;
 }
Exemplo n.º 6
0
 public NotificationsController(AzureNotifications azureNotifications, ProgenyDbContext context, ImageStore imageStore)
 {
     _azureNotifications = azureNotifications;
     _context            = context;
     _imageStore         = imageStore;
 }
Exemplo n.º 7
0
 public CalendarController(IDataService dataService, ProgenyDbContext context, AzureNotifications azureNotifications)
 {
     _context            = context;
     _dataService        = dataService;
     _azureNotifications = azureNotifications;
 }