Пример #1
0
 private LinkedInProfile GetProfile(LinkedInDataContext dc, Guid userId)
 {
     dc.LoadOptions = ProfileLoadOptions;
     return(GetProfileByUserIdQuery(dc, userId, _industriesQuery, _locationQuery));
 }
Пример #2
0
 private LinkedInProfile GetProfile(LinkedInDataContext dc, string linkedInId)
 {
     dc.LoadOptions = ProfileLoadOptions;
     return(GetProfileQuery(dc, linkedInId, _industriesQuery, _locationQuery));
 }