Пример #1
0
 public List <Contact> GetContacts()
 {
     using (AyelletContext context = new AyelletContextFactory().Create())
     {
         return(context.Contact.ToList());
     }
 }
Пример #2
0
 public Contact GetContact(int id)
 {
     using (AyelletContext context = new AyelletContextFactory().Create())
     {
         return(context.Contact.FirstOrDefault(c => c.ContactId == id));
     }
 }