示例#1
0
 public RepositorioGenerico(DBRutasEntities context)
 {
     this._context = context;
     _table        = context.Set <T>();
 }
示例#2
0
 public RepositorioGenerico()
 {
     _context = new DBRutasEntities();
     _table   = _context.Set <T>();
 }