public IActionResult GetJourneyMontoring(int journeyId)
 {
     try
     {
         return(Ok(_journeyService.GetJourneyMontoring(journeyId)));
     }
     catch (Exception ex)
     {
         ex.LogException();
         return(Ok(new ServiceResponse {
             Status = DAL.Common.Enums.ResponseStatus.ServerError
         }));
     }
 }