Пример #1
0
 public void Notify(Notification notification)
 {
     UserNotifications.Add(new UserNotification(this, notification));
 }
Пример #2
0
 public void Notify(Notification notification)
 {
     UserNotifications.Add(
         new UserNotification(this, notification) //LD "this" because we are in the context of a specific "User" and then we want just store the specific user
         );
 }