Beispiel #1
0
 public static List <ContactData> GetAll()
 {
     using (AddressBookBD db = new AddressBookBD())
     {
         return((from c in db.Contacts.Where(x => x.Deprecated == "0000-00-00 00:00:00") select c).ToList());
     }
 }
Beispiel #2
0
 public static List <GroupData> GetAll()
 {
     using (AddressBookBD db = new AddressBookBD())
     {
         return((from g in db.Groups select g).ToList());
     }
 }
Beispiel #3
0
        public List <ContactData> GetContacts()

        {
            using (AddressBookBD db = new AddressBookBD())
            {
                return((from c in db.Contacts
                        from gcr in db.GCR.Where(p => p.GroupId == Id && p.ContactId == c.Id &&
                                                 c.Deprecated == "0000-00-00 00:00:00")
                        select c).Distinct().ToList());
            }
        }