Package pl.com.bottega.ecommerce.sales.domain.offer.discounts

Examples of pl.com.bottega.ecommerce.sales.domain.offer.discounts.QuantityDiscount


@DomainFactory
public class DiscountFactory {

  public DiscountPolicy create(Client client) {
    // TODO explore domain rules
    return new QuantityDiscount(20, 3);//20% for over 3 items
  }
View Full Code Here

TOP

Related Classes of pl.com.bottega.ecommerce.sales.domain.offer.discounts.QuantityDiscount

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.