public IActionResult CloseJourney(int journeyId, string comment) { try { var result = _journeyService.CloseJourney(journeyId, comment); return(Ok(result)); } catch (Exception ex) { ex.LogException(); return(Ok(new ServiceResponse { Status = DAL.Common.Enums.ResponseStatus.ServerError })); } }