コード例 #1
0
        public ActionResult <IEnumerable <Incident> > Get()
        {
            var incidents = _incidentService.GetAllIncident();

            return(Ok(incidents));
        }