コード例 #1
0
        public ActionResult <IEnumerable <MeetingEntity> > Get()
        {
            var meeting = meetingService.GetAllMeeting();

            return(new ObjectResult(meeting));
        }