예제 #1
0
 public void Notify(Notification notification)
 {
     if (notification == null)
     {
         throw new ArgumentNullException("notification");
     }
     UserNotifications.Add(new UserNotification(this, notification));
 }
예제 #2
0
 public void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(this, notification));
 }
예제 #3
0
        public void Notify(Notification notification)
        {
            var userNotification = new UserNotification(this, notification);

            UserNotifications.Add(userNotification);
        }
예제 #4
0
 internal void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(this, notification));
 }
예제 #5
0
파일: User.cs 프로젝트: AmirEzati/CoffeShop
 public void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(notification, this));
 }