Exemplo n.º 1
0
 public void Edit(Country country)
 {
     _repo.Update(country);
     _repo.Save();
 }
Exemplo n.º 2
0
 public void AddCountry(Country country)
 {
     _repo.Insert(country);
     _repo.Save();
 }