Add files via upload

This commit is contained in:
gopi17701 2018-07-31 15:58:05 -04:00 committed by GitHub
parent 8f2168f47e
commit 6000ecdef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -17,15 +17,15 @@ public class AuthService extends Service{
return getDao().login(username,password);
}
public void updateCustomer( int customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax)
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)
throws AstuteException {
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
}
public void createCustomer(String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int 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)
throws AstuteException {
getDao().createCustomer(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);
}
}

View File

@ -13,20 +13,20 @@ public class CustomerService extends Service{
super();
}
public List<Customer> getCustomers(int customerId)
public List<Customer> getCustomers(String customerId)
throws AstuteException {
return getDao().getCustomers(customerId);
}
public void updateCustomer( int customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax)
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)
throws AstuteException {
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
}
public int createCustomer(String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int 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)
throws AstuteException {
return getDao().createCustomer(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);
}
}

View File

@ -37,7 +37,7 @@ public class POService extends Service{
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId);
}
public void createPOMaster(String PONum, String contractNum, Date PODate, Double contractAmt, Integer customerId, String astuteProjectNumber)
public void createPOMaster(String PONum, String contractNum, Date PODate, Double contractAmt, String customerId, String astuteProjectNumber)
throws AstuteException {
getDao().createPOMaster(PONum, contractNum, PODate, contractAmt, customerId, astuteProjectNumber);
}