public async Task <ActionResult <IEnumerable <Meeting> > > GetMeetings(int id)
        {
            var meetings = await _meetingService.GetCompanyMeetingsAsync(id);

            return(Ok(meetings));
        }