public ActionResult <IEnumerable <IssueType> > GetIncidentType()
        {
            var issueCategoty = _incidentService.GetAllIssueType();

            return(Ok(issueCategoty));
        }