Exemplo n.º 1
0
        public int InsertPersonFromCustomer(Customer customer)
        {
            int returnValue = _dataAccessObjects.InsertPersonFromCustomer(customer.PersonId, customer.FirstName,
                                                                          customer.LastName, customer.PhoneNumber, customer.EmailAddress, (int)customer.PersonType);

            return(returnValue);
        }