public static CountryCollection LoadForShipZone(Int32 shipZoneId, string sortExpression)
 {
     return(CountryDataSource.LoadForShipZone(shipZoneId, 0, 0, sortExpression));
 }
 public static CountryCollection LoadForShipZone(Int32 shipZoneId, int maximumRows, int startRowIndex)
 {
     return(CountryDataSource.LoadForShipZone(shipZoneId, maximumRows, startRowIndex, string.Empty));
 }
 public static CountryCollection LoadForShipZone(Int32 shipZoneId)
 {
     return(CountryDataSource.LoadForShipZone(shipZoneId, 0, 0, string.Empty));
 }