Agathas.Storefront.Ui.Web.Controllers.BasketController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            Guid basket_id = get_basket_id();

            var basket_detail_view = _query_service.get_view_of<BasketDetailView>(x => x.id == basket_id);

            return View(basket_detail_view);
        }