Ejemplo n.º 1
0
 public static List <Country> ListOfCountry(int page, int pageSize, string searchValue, out int rowCount)
 {
     if (page < 1)
     {
         page = 1;
     }
     rowCount = CountryDB.Count(searchValue);
     return(CountryDB.List(page, pageSize, searchValue));
 }