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