Пример #1
0
 private void RefreshContactsTable()
 {
     MainTable.ItemsSource = contactsDAL.GetContacts();
 }
Пример #2
0
 public ContactsVM()
 {
     ContactsList = new ObservableCollection <Contact>(ContactDAL.GetContacts());
 }
Пример #3
0
 public static List <Contact> GetContacts(int clubId, bool unsubscribed = false)
 {
     return(ContactDAL.GetContacts(clubId, unsubscribed));
 }