Beispiel #1
0
 public BoxHub(IChangeNotifierRepository changeNotifier, INotificationsRepository notificationsRepository, IStudentRepository studentRepository, AppDbContext appDbCotext, IBoxRepository boxRepository, IItemRepository itemRepository)
 {
     _notificationsRepository = notificationsRepository;
     _studentRepository       = studentRepository;
     _boxRepository           = boxRepository;
     _itemRepository          = itemRepository;
     _appDbCotext             = appDbCotext;
     _changeNotifier          = changeNotifier;
 }
Beispiel #2
0
 public BoxController(INotificationsRepository notificationsRepository, IItemRepository itemRepository, IChangeNotifierRepository changeNotifierRepository, IBoxRepository boxRepository, IStudentRepository studentRepository, AppDbContext appDbCotext, IHubContext <BoxHub> boxHub)
 {
     _notificationsRepository = notificationsRepository;
     _itemRepository          = itemRepository;
     _boxHub      = boxHub;
     _appDbCotext = appDbCotext;
     _changeNotifierRepository = changeNotifierRepository;
     _boxRepository            = boxRepository;
     _studentRepository        = studentRepository;
 }
Beispiel #3
0
 public NotificationsRepository(AppDbContext appDbCotext, IHubContext <BoxHub> boxHub, IChangeNotifierRepository changeNotifier)
 {
     _appDbCotext    = appDbCotext;
     _boxHub         = boxHub;
     _changeNotifier = changeNotifier;
 }