Ejemplo n.º 1
0
        public HomePage()
        {
            reader = new NotificationDao();
            Notifications = new ObservableCollection<Notification>(reader.GetAllUnread());

            this.InitializeComponent();
        }
Ejemplo n.º 2
0
 public ItemPage()
 {
     dao = new NotificationDao();
     this.InitializeComponent();
 }