Exemple #1
0
 public FornecedorRepository(StudyIODbContext context) : base(context)
 {
 }
 public EnderecoRepository(StudyIODbContext context) : base(context)
 {
 }
 public ProdutoRepository(StudyIODbContext context) : base(context)
 {
 }
Exemple #4
0
 public Repository(StudyIODbContext db)
 {
     Db    = db;
     DbSet = db.Set <TEntity>();
 }