public IActionResult Index()
 {
     var firstMappedProduct = productComponent.GetMappedProducts(Guid.NewGuid())
                                              .FirstOrDefault();
     return View("Index", firstMappedProduct);
 }