Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
[HttpGet("{customerid}")]
[Cached(Constants.Day_In_Seconds)]
public async Task<IActionResult> GetCustomerBasket(Guid customerid)
{
var basket = await _consulHttpClient.GetAsync<BasketDto>("basket-service", $"/basket/{customerid}");
return Ok(basket);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment