public List<Contact> GetAllContacts(string filter)
 {
     var db = new SimpleAddressBookDb();
     return db.GetContacts(filter);
 }
 public List<Contact> GetAllContacts(List<string> filters)
 {
     var db = new SimpleAddressBookDb();
     return db.GetContacts(filters.First());
 }
 public List<Contact> GetAllContacts()
 {
     var db = new SimpleAddressBookDb();
     return db.GetContacts("anything");
 }
Exemplo n.º 4
0
 public List <Contact> GetAllContactsViaStatic()
 {
     return(SimpleAddressBookDb.GetContactsStatic("Anything"));
 }
Exemplo n.º 5
0
        public List <Contact> GetAllContacts(List <string> filters)
        {
            var db = new SimpleAddressBookDb();

            return(db.GetContacts(filters.First()));
        }
Exemplo n.º 6
0
        public List <Contact> GetAllContacts(string filter)
        {
            var db = new SimpleAddressBookDb();

            return(db.GetContacts(filter));
        }
Exemplo n.º 7
0
        public List <Contact> GetAllContacts()
        {
            var db = new SimpleAddressBookDb();

            return(db.GetContacts("anything"));
        }