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