Ejemplo n.º 1
0
        public async Task <IActionResult> GetAll()
        {
            var animalsDto = await _animalService.GetAnimalsAsync();

            return(Ok(animalsDto));
        }