package northwind.model; import java.util.Collection; import java.util.UUID; public class Customer { private UUID customerID; private String customerID_OLD; private String companyName; private String contactName; private String contactTitle; private String address; private String city; private String region; private String postalCode; private String country; private String phone; private String fax; private Integer rowVersion; private Collection<Order> orders; public UUID getCustomerID() { return customerID; } public void setCustomerID(UUID customerID) { this.customerID = customerID; } public String getCustomerID_OLD() { return customerID_OLD; } public void setCustomerID_OLD(String customerID_OLD) { this.customerID_OLD = customerID_OLD; } public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public String getContactName() { return contactName; } public void setContactName(String contactName) { this.contactName = contactName; } public String getContactTitle() { return contactTitle; } public void setContactTitle(String contactTitle) { this.contactTitle = contactTitle; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getRegion() { return region; } public void setRegion(String region) { this.region = region; } public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getFax() { return fax; } public void setFax(String fax) { this.fax = fax; } public Integer getRowVersion() { return rowVersion; } public void setRowVersion(Integer rowVersion) { this.rowVersion = rowVersion; } public Collection<Order> getOrders() { return orders; } public void setOrders(Collection<Order> orders) { this.orders = orders; } }