public void Edit(Country country) { _repo.Update(country); _repo.Save(); }
public void AddCountry(Country country) { _repo.Insert(country); _repo.Save(); }