Exemplo n.º 1
0
 public List <T> FindToList <T>(Expression <Func <T, bool> > Where, string OrderBy = null) where T : BaseEntity, new()
 {
     return(find.FindToList <T>(Where, OrderBy));
 }
Exemplo n.º 2
0
 public List <M> FindToList <M>(M entity, string OrderBy = null) where M : BaseModel, new()
 {
     return(find.FindToList <M>(entity, OrderBy));
 }