Example #1
0
        // GET: Voters/Details/5
        public async Task <IActionResult> Details(int id)
        {
            Notification notification = await _notify.GetNotificationById(id);

            if (notification == null)
            {
                return(NotFound());
            }
            return(View(notification));
        }