mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -04:00
Add files via upload
This commit is contained in:
parent
27d7316660
commit
1cc897ea62
|
@ -18,6 +18,11 @@ public class CustomerService extends Service{
|
||||||
return getDao().getCustomers(customerId);
|
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)
|
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 {
|
throws AstuteException {
|
||||||
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user