Exemplo n.º 1
0
        public async Task <SuggestionDto> GetAsync(int id)
        {
            var suggestion = await suggestionRepository.GetAsync(id);

            return(mapper.Map <SuggestionDto>(suggestion));
        }