getCustomer method

Customer getCustomer ()
inherited

Implementation

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