예제 #1
0
 /// <summary>
 /// Fetching promotion instead of taking for database
 /// </summary>
 public void ProxyPromotions()
 {
     Promotions = new List <Promotion>
     {
         new Promotion
         {
             ID        = Guid.NewGuid().ToString(),
             OfferName = SkuPromotionConstants.JumboOffer,
             SKUs      = new List <Sku> {
                 new Sku {
                     ID = 'A', Unit = 3, Price = _skuLogic.GetSKU('A').Price
                 }
             },
             FixedPrice        = 130,
             IsOfferActive     = true,
             DiscountInPercent = 0
         },
         new Promotion
         {
             ID        = Guid.NewGuid().ToString(),
             OfferName = SkuPromotionConstants.JumboOffer,
             SKUs      = new List <Sku> {
                 new Sku {
                     ID = 'B', Unit = 2, Price = _skuLogic.GetSKU('B').Price
                 }
             },
             FixedPrice        = 45,
             IsOfferActive     = true,
             DiscountInPercent = 0
         },
         new Promotion
         {
             ID        = Guid.NewGuid().ToString(),
             OfferName = SkuPromotionConstants.ComboOffer,
             SKUs      = new List <Sku> {
                 new Sku {
                     ID = 'C', Unit = 1, Price = _skuLogic.GetSKU('C').Price
                 },
                 new Sku {
                     ID = 'D', Unit = 1, Price = _skuLogic.GetSKU('D').Price
                 }
             },
             FixedPrice        = 30,
             IsOfferActive     = true,
             DiscountInPercent = 0
         }
     };
 }
예제 #2
0
 public Sku GetSKU(char SkuID)
 {
     return(_skuSource.GetSKU(SkuID));
 }