From 9c42ed8b31dbde3293d741d0e07520b58a212316 Mon Sep 17 00:00:00 2001 From: gopi17701 <41270090+gopi17701@users.noreply.github.com> Date: Tue, 24 Jul 2018 22:22:39 -0400 Subject: [PATCH] Delete Customer.java --- .../java/com/astute/requests/Customer.java | 129 ------------------ 1 file changed, 129 deletions(-) delete mode 100644 AstuteSystem/src/main/java/com/astute/requests/Customer.java diff --git a/AstuteSystem/src/main/java/com/astute/requests/Customer.java b/AstuteSystem/src/main/java/com/astute/requests/Customer.java deleted file mode 100644 index d8cb062..0000000 --- a/AstuteSystem/src/main/java/com/astute/requests/Customer.java +++ /dev/null @@ -1,129 +0,0 @@ -package com.astute.model; - -import java.util.Date; - -public class Customer { - 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 Customer(int customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax) { - this.customerId = customerId; - this.customerName = customerName; - this.billToDept = billToDept; - this.add1 = add1; - this.add2 = add2; - this.city = city; - this.state = state; - this.zip = zip; - this.ziplast4 = ziplast4; - this.email = email; - this.phone = phone; - this.fax = fax; - } - - public int getCustomerId() { - return customerId; - } - - public void setCustomerId(int customerId) { - this.customerId = customerId; - } - - public String getCustomerName() { - return customerName; - } - - public void setCustomerName(String customerName) { - this.customerName = customerName; - } - - public String getBillToDept() { - return billToDept; - } - - public void setBillToDept(String billToDept) { - this.billToDept = billToDept; - } - - public String getAdd1() { - return add1; - } - - public void setAdd1(String add1) { - this.add1 = add1; - } - - public String getAdd2() { - return add2; - } - - public void setAdd2(String add2) { - this.add2 = add2; - } - - public String getCity() { - return city; - } - - public void setCity(String city) { - this.city = city; - } - - public String getState() { - return state; - } - - public void setState(String state) { - this.state = state; - } - - public int getZip() { - return zip; - } - - public void setZip(int zip) { - this.zip = zip; - } - - public int getZiplast4() { - return ziplast4; - } - - public void setZiplast4(int ziplast4) { - this.ziplast4 = ziplast4; - } - - public String getEmail() { - return email; - } - - public void setEmail(String email) { - this.email = email; - } - - public int getPhone() { - return phone; - } - - public void setPhone(int phone) { - this.phone = phone; - } - - public int getFax() { - return fax; - } - - public void setFax(int fax) { - this.fax = fax; - } -}