import org.mxchange.jcore.contact.Contact;
import org.mxchange.jcore.contact.gender.Gender;
import org.mxchange.jshop.beans.BaseFrameworkBean;
-import org.mxchange.pizzaapplication.model.customer.PizzaServiceCustomer;
+import org.mxchange.jshop.model.customer.ShopCustomer;
/**
* A customer bean which hides the customer instance
*/
public PizzaServiceCustomerBean () {
// Instance customer
- Contact customer = new PizzaServiceCustomer();
+ Contact customer = new ShopCustomer();
// And set it here
this.setContact(customer);
+++ /dev/null
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.pizzaapplication.model.customer;
-
-import org.mxchange.jcore.contact.Contact;
-
-/**
- * A customer interface
- *
- * @author Roland Haeder
- */
-public interface Customer extends Contact {
-
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.pizzaapplication.model.customer;
-
-import org.mxchange.jcore.contact.BaseContact;
-
-/**
- *
- * @author Roland Haeder
- */
-public class PizzaServiceCustomer extends BaseContact implements Customer {
-}