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

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