// GET: ProductInvent/Details/5
        public ActionResult Details(int id)
        {
            var productcollectionmodel = productoInventRepository.GetProductDetails(id);

            productcollectionmodel.ProductImage = azureBlobStorage.DownloadFromBlob(productcollectionmodel.FileName).Result;
            return(View("ProductDetails", productcollectionmodel));
        }
        // GET: ProductInvent/Details/5
        public ActionResult Details(int id)
        {
            var productcollectionmodel = productoInventRepository.GetProductDetails(id);

            return(View("ProductDetails", productcollectionmodel));
        }