Exemple #1
0
 public UserRepository(IChatDbContext context)
     : base(context)
 {
 }
Exemple #2
0
 public ChatController(IChatDbContext chatContext, IConnectionManager connectionManager)
 {
     this.chatContext       = chatContext;
     this.connectionManager = connectionManager;
 }
 public GenericRepository(IChatDbContext context)
 {
     this.Context = context;
     this.DbSet   = this.Context.Set <T>();
 }
 public UserService(IChatDbContext dbContext)
 {
     _chatDbContext = dbContext;
 }
 public LoginCommandHandler(IChatDbContext context)
 {
     _context = context;
 }
Exemple #6
0
 public MessageService(IChatDbContext dbContext)
 {
     _chatDbContext = dbContext;
 }
Exemple #7
0
 public ChatHub(IConnectionManager connectionManager, IChatDbContext chatContext)
 {
     this.connectionManager = connectionManager;
     this.chatContext       = chatContext;
 }
Exemple #8
0
 public ChatData(IChatDbContext context)
 {
     this.context      = context;
     this.repositories = new Dictionary <Type, object>();
 }
Exemple #9
0
 public ContactService(IChatDbContext dbContext)
 {
     _chatDbContext = dbContext;
 }