public ActionResult Product(int productId)
        {
            ProductViewModel viewModel = new ProductViewModel();
            ProductCategoryRepository repo = new ProductCategoryRepository(Properties.Settings.Default.ConStr);
            viewModel.product = repo.GetProductById(productId);
            viewModel.Categories = repo.GetCategories();

            return View(viewModel);
        }