public string DeleteProduct(int Id)
        {
            try
            {
                DataOperationService dataOperationService = new DataOperationService();
                int result = 0;

                result = dataOperationService.DeleteProductAsync(Id).GetAwaiter().GetResult();
                return(result.ToString());
            }
            catch
            {
                throw;
            }
        }