public UserRepository(VTBHackatonContext context) => _context = context;
Beispiel #2
0
 public ChatController(IHubContext <ChatHub> hc, VTBHackatonContext context)
 {
     _hubContext = hc;
     _context    = context;
 }
 public AccountController(VTBHackatonContext context, IUserRepository repo)
 {
     _repo    = repo;
     _context = context;
 }
 public RoleHandler(VTBHackatonContext context) => _context = context;
 public DocumentRepository(VTBHackatonContext context) => _context = context;
 public VoiceController(IHubContext <VoiceHub> hc, VTBHackatonContext context)
 {
     _hubContext = hc;
     _context    = context;
 }
 public RoomRepository(VTBHackatonContext context) => _context = context;
Beispiel #8
0
 public DocumentController(IDocumentRepository repo, VTBHackatonContext context)
 {
     _context = context;
     _repo    = repo;
 }
Beispiel #9
0
 public UserRoomRepository(VTBHackatonContext context, IEmailService sender)
 {
     _context      = context;
     _EmailService = sender;
 }
Beispiel #10
0
 public PollRepository(VTBHackatonContext context) => _context = context;
 public VariantRepository(VTBHackatonContext context) => _context = context;