public async Task <ProductModel> GetProductById(Guid id)
        {
            var product = await _productQuery.GetProductById(id);

            return(await Task.FromResult(product));
        }