public HomePage()
        {
            reader = new NotificationDao();
            Notifications = new ObservableCollection<Notification>(reader.GetAllUnread());

            this.InitializeComponent();
        }
 public ItemPage()
 {
     dao = new NotificationDao();
     this.InitializeComponent();
 }