Exemplo n.º 1
0
        public async Task <IEnumerable <SuggestionDto> > BrowseAsync()
        {
            var suggestions = await suggestionRepository.GetAllAsync();

            return(mapper.Map <IEnumerable <SuggestionDto> >(suggestions));
        }