Add files via upload

This commit is contained in:
gopi17701 2018-09-15 22:48:57 -04:00 committed by GitHub
parent 27d7316660
commit 1cc897ea62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,11 @@ public class CustomerService extends Service{
return getDao().getCustomers(customerId);
}
public Customer getCustomer(String poNumber)
throws AstuteException {
return getDao().getCustomer(poNumber);
}
public void updateCustomer( String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, String phone, String fax)
throws AstuteException {
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);