renamed sleuth projects

This commit is contained in:
Tom Hombergs
2017-09-02 11:54:28 +02:00
parent b52c75bc3b
commit 67a895eada
33 changed files with 65 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
package com.example.demo;
public class CustomerAndAddress {
private Customer customer;
private Address address;
public CustomerAndAddress(Customer customer, Address address) {
this.customer = customer;
this.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;
}
}