Example #1
0
 public bool AddPerson(Person p)
 {
     _db.InsertPerson(p.FirstName, p.LastName, p.EmailAddress, p.PhoneNumber);
     return(true);
 }