コード例 #1
0
 public int InsertPersonFromCustomer(Guid personId, string firstName, string lastName, string phoneNumber, string emailAddress,
                                     int personTypeId)
 {
     return(PersonData.Insert(personId, firstName, lastName, phoneNumber, emailAddress, personTypeId));
 }
コード例 #2
0
 public int InsertPerson(Person person)
 {
     return(PersonData.Insert(person));
 }