예제 #1
0
 private static IEnumerable <MemberMessage> GetMemberMessages(ContactsDataContext dc, Guid employerId, Guid memberId)
 {
     dc.LoadOptions = MessageLoadOptions;
     return(GetMessagesQuery(dc, employerId, memberId));
 }
예제 #2
0
 private static MemberMessage GetMemberMessage(ContactsDataContext dc, Guid employerId, Guid id)
 {
     dc.LoadOptions = MessageLoadOptions;
     return(GetMessageQuery(dc, employerId, id));
 }