Example #1
0
 public ClienteRepository(EscolaridadeContext context) : base(context)
 {
 }
Example #2
0
 protected Repository(EscolaridadeContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
Example #3
0
 public UnitOfWork(EscolaridadeContext context)
 {
     _context = context;
 }