예제 #1
0
        public async Task <IActionResult> GetMeeting()
        {
            IEnumerable <Meetings> model = await _meetingRepository.GetAllMeetings();

            return(Ok(model));
        }