public async Task <List <MeetingDto> > GetMeetingsForParticipant(int participantId)
 {
     try
     {
         return(await ParticipantService.GetMeetingsForParticipant(participantId));
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
         throw;
     }
 }