getCustomer method
inherited
Implementation
Customer getCustomer() {
if (this.customer == null) {
this.customer = new Customer();
}
return this.customer;
}
Customer getCustomer() {
if (this.customer == null) {
this.customer = new Customer();
}
return this.customer;
}