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