public Country AddNew(Country pCountry) { pCountry = ModelValidateToInsert(pCountry); if (pCountry.IsValid()) { countryRepository.AddNew(pCountry); } return(pCountry); }