Exemplo n.º 1
0
 public SimpleSayRepository(DataContext.HeyTomContext baseDbContext) : base(baseDbContext)
 {
 }
Exemplo n.º 2
0
 public CatRepository(DataContext.HeyTomContext baseDbContext) : base(baseDbContext)
 {
 }
Exemplo n.º 3
0
 public Repository(DataContext.HeyTomContext baseDbContext)
 {
     _baseDbContext = baseDbContext;
     _set           = _baseDbContext.Set <T>();
 }