//public static CountryDto GetCountryByCountryId(int pCountryId) {
        //  using (var _db = new Rbr_Db()) {
        //    return CallingPlanManager.GetCountry(_db, pCountryId);
        //  }
        //}

        public static CountryDto GetCountryByName(string pName)
        {
            using (var _db = new Rbr_Db()) {
                return(CallingPlanManager.GetCountry(_db, pName));
            }
        }