public async Task <IActionResult> GetProductDetail(int id_product)
 {
     try {
         return(Ok(_storageStore.GetProduct(id_product)));
     }catch (Exception ex)
     {
         return(BadRequest(Json(new { message = ex.Message })));
     }
 }