public static List <U> GetRange <T, U>(this BaseRepositoryEF <T, int> repository, string predicate, string order) where T : class { return(repository.GetRange <T, int, U>(predicate, order)); }
public static List <U> GetRange <T, U>(this BaseRepositoryEF <T, string> repository, Expression <Func <T, bool> > predicate, string order) where T : class { return(repository.GetRange <T, string, U>(predicate, order)); }