Example #1
0
 public DiscountStrategy(
     DiscountStrategyId id,
     DiscountName name,
     DiscountDescription description,
     IProductGlobalDiscountStrategy strategy)
     : base(id)
 {
     Name        = name;
     Description = description;
     Strategy    = strategy;
 }
 public ProductGlobalPriceDiscountStrategyTest()
 {
     _strategy = new ProductGlobalPriceDiscountStrategy(_weightByProductId);
 }