Exemple #1
0
 public static Contact find(ContactList contactList, string id)
 {
     return(contactList.find_contact(id));
 }
Exemple #2
0
 public static IEnumerable<Contact> find_all(ContactList contactList)
 {
     return contactList.find_all_contacts();
 }
Exemple #3
0
 public static IEnumerable <Contact> find_all(ContactList contactList)
 {
     return(contactList.find_all_contacts());
 }
Exemple #4
0
 public static Contact find(ContactList contactList, string id)
 {
     return contactList.find_contact(id);
 }