public void Update(Client updatedItem) { session.Update(updatedItem); }
public void Delete(Client deletedItem) { session.Delete(deletedItem); }
public void Add(Client newItem) { session.Save(newItem); }
public void Update(Client updatedItem) { throw new NotImplementedException(); }
public void Delete(Client deletedItem) { throw new NotImplementedException(); }
public void Add(Client newItem) { throw new NotImplementedException(); }