Beispiel #1
0
 public void Edit(Country country)
 {
     _repo.Update(country);
     _repo.Save();
 }
Beispiel #2
0
 public void AddCountry(Country country)
 {
     _repo.Insert(country);
     _repo.Save();
 }