Example #1
0
 public CommentHistoryVM()
 {
     this.UserAccounts   = new ObservableCollection <string>();
     this.CommentHistory = new ObservableCollection <string>();
     this.Comments       = new ObservableCollection <CommentEntry>();
     loadItemsFromDB();
     if (UserAccounts.Count > 0)
     {
         SelectedUser = UserAccounts.ElementAt(0);
     }
 }