Exemplo n.º 1
0
 public DeliverService(Delivery delivery) {
   super();
   this.delivery = delivery;
   capacity = Capacity.invert(delivery.getSize());
 }
 public DeliverShipment(Shipment shipment) {
   super();
   this.shipment = shipment;
   this.capacity = Capacity.invert(shipment.getSize());
 }