Ejemplo n.º 1
0
    /// <summary>
    /// To fetch the Country by CountryId
    /// </summary>
    /// <param name="CountryId">int</param>
    /// <returns>Country</returns>
    public Country GetCountryByPKId(int CountryId)
    {
        Country objCountry = new Country();

        objCountry = CountryDB.GetCountryByPKCoundtryId(CountryId);
        return(objCountry);
    }