Exemplo n.º 1
0
 public IActionResult ApplyPromotion(List <string> skuType)
 {
     try
     {
         return(Ok(new { Result = _promotionServices.CheckAndApplyPromotion(skuType) }));
     }
     catch (Exception)
     {
         return(Problem());
     }
 }