Exemplo n.º 1
0
        public async Task <IActionResult> Image(string id)
        {
            var result = await _catService.DownloadCatImageAsync(id);

            return(result ? (IActionResult)Ok() : NotFound());
        }