예제 #1
0
 public IQueryable <Guid> ListConferIdsByMemberId(Guid userId)
 {
     if (userId != null)
     {
         return(_conferRepository.GetConferIdList(userId));
     }
     return(null);
 }