Exemplo n.º 1
0
        public IActionResult Remove(int id)
        {
            Speech speech = _speechService.GetById(id);

            int authorId = speech.AuthorId;

            _speechService.Remove(speech);

            return(RedirectToAction("List", new { id = authorId }));
        }