public ActionResult AddBundleToCart()
        {
            AddToCartRenderingModel addToCartModel = AddToCartRepository.GetAddToCartModel();

            addToCartModel.CatalogName = StorefrontContext.CurrentStorefront.Catalog;

            return(View("~/Views/ProductBundle/AddBundleToCart.cshtml", _productBundleRepository.GetProductBundleRenderingModel(_visitorContext)));
        }
 public ActionResult ProductBundle()
 {
     return(View("~/Views/ProductBundle/ProductBundle.cshtml", _productBundleRepository.GetProductBundleRenderingModel(_visitorContext)));
 }