From 1cc897ea628ce5a6d8625974d17394fb8af7df1c Mon Sep 17 00:00:00 2001 From: gopi17701 <41270090+gopi17701@users.noreply.github.com> Date: Sat, 15 Sep 2018 22:48:57 -0400 Subject: [PATCH] Add files via upload --- .../src/main/java/com/astute/service/CustomerService.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AstuteSystem/src/main/java/com/astute/service/CustomerService.java b/AstuteSystem/src/main/java/com/astute/service/CustomerService.java index 9ec134e..d35d27b 100644 --- a/AstuteSystem/src/main/java/com/astute/service/CustomerService.java +++ b/AstuteSystem/src/main/java/com/astute/service/CustomerService.java @@ -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);