/// <summary> /// Call for apply Coupon Discount /// </summary> /// <param name="key">Redis key</param> /// <returns></returns> public ActionResult ApplyCoupon(string key) { var order = discountService.ApplyCouponDiscount(key, 50, 5); return(RedirectToAction("ShowOrderCreated", order)); }