Example #1
0
 public Repositorio(CnnDbContext _context)
 {
     Context = _context;
     table   = _context.Set <T>();
 }
Example #2
0
 public Repositorio()
 {
     Context = new CnnDbContext();
     table   = Context.Set <T>();
 }