public ActionResult <Incident> Get(int id)
        {
            var incident = _incidentService.GetIncident(id);

            return(Ok(incident));
        }