Ejemplo n.º 1
0
        public IActionResult Index(string UserId)
        {
            NotificationsViewModel notificationsViewModel = new NotificationsViewModel()
            {
                Notifications = _notificationRepository.GetAllNotifications(UserId)
            };

            return(View(notificationsViewModel));
        }
Ejemplo n.º 2
0
 // GET: Voters
 public async Task <IActionResult> Index()
 {
     return(View(await _notify.GetAllNotifications()));
 }