Exemplo n.º 1
0
        public AmountCampaign(ICategory category, double discount, int itemCount, DiscountType discountType)
        {
            this.Category     = category;
            this.Discount     = discount;
            this.ItemCount    = itemCount;
            this.DiscountType = discountType;

            category.AddCampaign(this);
        }