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