Example #1
0
        public IActionResult Delete([FromRoute] int id)
        {
            _votingService.DeleteAsync(new DeleteVotingDto
            {
                Id   = id,
                User = User
            });

            return(RedirectToAction("Index"));
        }