public IHttpActionResult GetProduct(int Id)
 {
     try
     {
         DataOperationService dataOperationService = new DataOperationService();
         Product product = dataOperationService.GetProductAsync(Id).GetAwaiter().GetResult();
         if (product == null)
         {
             return(NotFound());
         }
         return(Ok(product));
     }
     catch
     {
         throw;
     }
 }