コード例 #1
0
 /// <summary>
 /// To verify whether the Country exist or not
 /// </summary>
 /// <param name="CountryName">string</param>
 /// <param name="PKCountryId">int</param>
 /// <returns></returns>
 public bool IsCountryExist(string CountryName, int PKCountryId)
 {
     return(CountryDB.IsCountryExist(CountryName, PKCountryId));
 }