X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Forg%2Fmxchange%2Fjshopcore%2Fwrapper%2FCheckoutWrapper.java;h=3b1a9e2085f8b4050e6ea4eb561dfdd66c8a26ac;hb=672084ab2c551cbff8c8c424780ed344f7c13925;hp=2ee6882cd68d164fe9df7b0fb4daeca6e4e20009;hpb=cfe7224d4385196244c556167c84c5593bddf252;p=jcustomer-core.git diff --git a/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java b/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java index 2ee6882..3b1a9e2 100644 --- a/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java +++ b/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java @@ -22,10 +22,11 @@ import org.mxchange.jshopcore.model.customer.Customer; /** * A wrapper for checkouts (customer, ordered items) - * + *

* @author Roland Haeder */ public class CheckoutWrapper implements WrapableCheckout { + /** * Serial number */ @@ -47,18 +48,22 @@ public class CheckoutWrapper implements WrapableCheckout { public CheckoutWrapper () { } + @Override public Customer getCustomer () { return this.customer; } + @Override public void setCustomer (final Customer customer) { this.customer = customer; } + @Override public List getList () { return this.list; } + @Override public void setList (final List list) { this.list = list; }