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

            suggestion.MakeServed();
            await suggestionRepository.UpdateAsync(suggestion);
        }