-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomer.java
106 lines (84 loc) · 2.56 KB
/
Customer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
Authors: Nick Barth, Nick Garcia, Kyle Bowles, Owen Leonard, Michael Gostomoski
Date: 11/18/2018
Assignment: Group Project Part 1 - Customer CDF
Section: 2
Purpose: An application to be used by a home repair and supply shop which
can create and edit customers/contractors, create and edit vendors,
create and edit inventory items,
enter sales, print receipts, and print reports.
*/
package CIS331GroupProject;
public class Customer {
private String firstName, lastName, address, phoneNumber, emailAddress;
//private int customerIDCount = 0;
int customerID;
Customer(String firstName, String lastName, String address,
String phoneNumber, String emailAddress, int uniqueID){
if(!(firstName.equals("")))
{
this.firstName = firstName;
}
if(!(lastName.equals("")))
{
this.lastName = lastName;
}
if(phoneNumber.length() == 10)
{
this.phoneNumber = phoneNumber;
}
this.address = address;
this.emailAddress = emailAddress;
customerID = uniqueID;
}
/*
* These methods get or alter the name of the customer
* getName combines first and last name for display purposes
*/
public String getFirstName(){
return firstName;
}
public void setFirstName(String firstName){
this.firstName = firstName;
}
public String getLastName(){
return lastName;
}
public void setLastName(String lastName){
this.lastName = lastName;
}
public String getName(){
return (firstName + " " + lastName);
}
/*
* Address, email, phone number getters and setters
*
*/
public String getAddress(){
return address;
}
public void setAddress(String address){
this.address = address;
}
public String getPhoneNumber(){
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber){
this.phoneNumber = phoneNumber;
}
public String getEmail(){
return emailAddress;
}
public void setEmail(String emailAddress){
this.emailAddress = emailAddress;
}
public String describeCustomer(){
String output = "Name: " + this.getName() + "\nPhone Number: " + this.getPhoneNumber()
+ "\nEmail: " + this.getEmail();
return output;
}
@Override
public String toString(){
return (this.getName() + " | ID: " + this.customerID);
}
}