Example #1
0
        public async Task <IActionResult> Remove(int id)
        {
            await _votingService.Remove(id);

            return(RedirectToAction(nameof(PollController.Index)));
        }