package catering.order; import java.util.HashSet; import java.util.Set; /** * This class is only used for the prototype to avoid using the bloated Salespoint API */ public class CustomOrderRepository { private Set orders; public CustomOrderRepository() { this.orders = new HashSet<>(); } public boolean addOrder(CustomOrder order) { return this.orders.add(order); } public boolean removeOrder(CustomOrder order) { return this.orders.remove(order); } public Set getOrders() { return this.orders; } }