public ActionResult Index()
        {
            IEnumerable <Product> products = productservice.GetLastProducts(10);

            ViewBag.latestProducts = products;
            return(View(categoryAppService.GetAll()));
        }