public IActionResult GetDispatchStructure(int id)
 {
     try {
         var response = _dispatchService.GetDispatchStructure(id);
         return(Ok(response));
     } catch (Exception e) {
         Util.LogError(e);
         return(StatusCode(StatusCodes.Status500InternalServerError, new ErrorClass()
         {
             code = StatusCodes.Status500InternalServerError.ToString(), message = "Something went wrong"
         }));
     }
 }