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