Exemplo n.º 1
0
        private Notification InstantiateNotification(ApplicationUser recipient)
        {
            //instantiate new notification object and populating the fields
            return(new Notification {
                NotificationId = IdService.GetNewNotificationId(context),
                CreatedDateTime = DateTime.Now,
                CreatedFor = recipient,

                Status = statusRepository.FindById(14)
            });
        }