public ActionResult Schedule()
        {
            var productschedules = _productScheduleService.GetProductSchedules().Where(p => p.Product.ProductCategory.Name.Contains("Tour")).ToList();

            return(View(model: productschedules));
        }