public AccessController(IDataService dataService, ImageStore imageStore, ProgenyDbContext context, AzureNotifications azureNotifications) { _dataService = dataService; _imageStore = imageStore; _context = context; _azureNotifications = azureNotifications; }
public VideosController(MediaDbContext context, ProgenyDbContext progenyDbContext, IDataService dataService, AzureNotifications azureNotifications) { _context = context; _progenyDbContext = progenyDbContext; _dataService = dataService; _azureNotifications = azureNotifications; }
public ContactsController(ProgenyDbContext context, ImageStore imageStore, IDataService dataService, AzureNotifications azureNotifications) { _context = context; _imageStore = imageStore; _dataService = dataService; _azureNotifications = azureNotifications; }
public VaccinationsController(ProgenyDbContext context, IDataService dataService, AzureNotifications azureNotifications) { _context = context; _dataService = dataService; _azureNotifications = azureNotifications; }
public RegisterController(AzureNotifications azureNotifications) { _azureNotifications = azureNotifications; hub = _azureNotifications.Hub; }
public NotificationsController(AzureNotifications azureNotifications, ProgenyDbContext context, ImageStore imageStore) { _azureNotifications = azureNotifications; _context = context; _imageStore = imageStore; }
public CalendarController(IDataService dataService, ProgenyDbContext context, AzureNotifications azureNotifications) { _context = context; _dataService = dataService; _azureNotifications = azureNotifications; }