Example #1
0
 public UnitOfWork(ITrollChatDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #2
0
 public UserRoomRepository(ITrollChatDbContext context)
     : base(context)
 {
 }
Example #3
0
 public MigrationHelper(ITrollChatDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #4
0
 public RoleRepository(ITrollChatDbContext context)
     : base(context)
 {
 }
Example #5
0
 public DomainRepository(ITrollChatDbContext context)
     : base(context)
 {
 }
Example #6
0
 public EmailRepository(ITrollChatDbContext context)
     : base(context)
 {
 }
Example #7
0
 public MessageRepository(ITrollChatDbContext context)
     : base(context)
 {
 }
 public UserTokenRepository(ITrollChatDbContext context)
     : base(context)
 {
 }
Example #9
0
        protected GenericRepository(ITrollChatDbContext context)
        {
            Context = context;

            dbSet = context.Set <T>();
        }