public ChatRepositoryBase(MyChatDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public UserService(MyChatDbContext chatDbContext) : base(chatDbContext)
 {
     _chatDbContext = chatDbContext;
 }
Ejemplo n.º 3
0
 public MessageService(MyChatDbContext chatDbContext, IHubContext <SignalHub> hubContext) : base(chatDbContext)
 {
     _chatDbContext = chatDbContext;
     _hubContext    = hubContext;
 }