From 61b51798fc5c3f3d26f553928ada99f80b2eab7a Mon Sep 17 00:00:00 2001 From: gopi17701 <41270090+gopi17701@users.noreply.github.com> Date: Thu, 23 Aug 2018 13:21:49 -0400 Subject: [PATCH] Add files via upload --- .../src/main/java/com/astute/model/Customer.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/AstuteSystem/src/main/java/com/astute/model/Customer.java b/AstuteSystem/src/main/java/com/astute/model/Customer.java index 3fe906c..614c058 100644 --- a/AstuteSystem/src/main/java/com/astute/model/Customer.java +++ b/AstuteSystem/src/main/java/com/astute/model/Customer.java @@ -13,10 +13,10 @@ public class Customer { int zip; int ziplast4; String email; - Long phone; - Long fax; + String phone; + String fax; - public Customer(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 Customer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, String phone, String fax) { this.customerId = customerId; this.customerName = customerName; this.billToDept = billToDept; @@ -111,19 +111,19 @@ public class Customer { this.email = email; } - public Long getPhone() { + public String getPhone() { return phone; } - public void setPhone(Long phone) { + public void setPhone(String phone) { this.phone = phone; } - public Long getFax() { + public String getFax() { return fax; } - public void setFax(Long fax) { + public void setFax(String fax) { this.fax = fax; } }