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