public List<OECombineType> Select(NameValueCollection where, NameValueCollection orderby, int pageIndex, int pageSize, out int totalCount) { OECombineTypeDA da = new OECombineTypeDA(); return da.Select(where, orderby, pageIndex, pageSize, out totalCount).DataTableToList<OECombineType>(); }
public List<OECombineType> Select(NameValueCollection where, NameValueCollection orderby) { OECombineTypeDA da = new OECombineTypeDA(); return da.Select(where, orderby).DataTableToList<OECombineType>(); }