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