public ActionResult <IEnumerable <Location> > GetLocation()
        {
            var locations = _incidentService.GetAllLocation();

            return(Ok(locations));
        }