Ejemplo n.º 1
0
 public void UpdateContact(Contact contact)
 {
     if (contact == null) throw new ArgumentNullException("contact");
     _repo.Update(contact);
 }
Ejemplo n.º 2
0
 public void InsertContact(Contact contact)
 {
     if (contact == null) throw new ArgumentNullException("contact");
     _repo.Insert(contact);
 }