public NotificationManagerViewModel(NotificationManager model)
 {
     _managerModel = model;
     _managerModel.RecievedSignal += _managerModel_RecievedSignal;
     Items = new ObservableCollection<NotificationStreamViewModel>();
     PropertyChanged += NotificationManagerViewModel_PropertyChanged;
 }
Esempio n. 2
0
 public Account(IPlatformClientBuilder setting)
 {
     Builder = setting;
     Stream = new StreamManager(this);
     Notification = new NotificationManager(this);
 }