示例#1
0
 public List <IEntity> getGeneral()
 {
     return((List <IEntity>)contexto.Set <IEntity>().ToList());
 }
示例#2
0
 public RepositorioGenerico(ContextoTienda contexto)
 {
     this.contexto = contexto;
     this.dbSet    = contexto.Set <IEntity>();
 }