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

org.modelmapper.projection.example1.Order Maven / Gradle / Ivy

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

public class Order {
  private Customer customer;
  private Address address;

  public Customer getCustomer() {
    return customer;
  }

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

  public Address getAddress() {
    return address;
  }

  public void setAddress(Address address) {
    this.address = address;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy