All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.modelmapper.gettingstarted.Order Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package org.modelmapper.gettingstarted;

public class Order {
  Customer customer;
  Address billingAddress;

  public Order(Customer customer, Address billingAddress) {
    this.customer = customer;
    this.billingAddress = billingAddress;
  }

  public Customer getCustomer() {
    return customer;
  }

  public void setCustomer(Customer customer) {
    this.customer = customer;
  }

  public Address getBillingAddress() {
    return billingAddress;
  }

  public void setBillingAddress(Address billingAddress) {
    this.billingAddress = billingAddress;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy