예제 #1
0
 public ICollection <MeetingDto> GetMeetingsByUser(int userId)
 {
     ValidationHelper.IntegerGreaterThanZero(userId, name: "User id");
     return(_meetingsRepository.GetMeetingsByUser(userId));
 }