public ImportLogRepository(BmtContext dbContext)
     : base(dbContext)
 {
 }
Example #2
0
 public InterfaceInfoRepository(BmtContext dbContext)
     : base(dbContext)
 {
 }
Example #3
0
 public RecordStatusLogRepository(BmtContext dbContext)
     : base(dbContext)
 {
 }
 public RecordInfoRepository(BmtContext dbContext)
     : base(dbContext)
 {
 }
Example #5
0
 public SessionInfoRepository(BmtContext dbContext)
     : base(dbContext)
 {
 }
Example #6
0
 protected Repository(BmtContext dbContext)
 {
     DbContext = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
     DbSet     = DbContext.Set <TEntity>();
 }