示例#1
0
 public static DataTable GetPagedPostalCodeNumbers(string postalCode, long downRange, int pageSize)
 {
     Business.PostalCode postalCodeController = new Business.PostalCode();
     return(postalCodeController.GetPagedPostalCodeNumbers(postalCode, downRange, pageSize));
 }
示例#2
0
 public static int GetCountPostCode(string postCode)
 {
     Business.PostalCode postalCodeController = new Business.PostalCode();
     return(postalCodeController.GetCountPostCode(postCode));
 }