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
9e0fe6338e
commit
4cd83d18b6
|
@ -17,13 +17,13 @@ public class AuthService extends Service{
|
||||||
return getDao().login(username,password);
|
return getDao().login(username,password);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateCustomer( String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long 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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void createCustomer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax)
|
public void createCustomer(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().createCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
getDao().createCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,13 +18,13 @@ public class CustomerService extends Service{
|
||||||
return getDao().getCustomers(customerId);
|
return getDao().getCustomers(customerId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateCustomer( String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long 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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public String createCustomer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax)
|
public String createCustomer(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 {
|
||||||
return getDao().createCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
return getDao().createCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user