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