Ejemplo n.º 1
0
        public IActionResult GetAllJourneyInfo(int id)
        {
            var result = _journeyService.GetAllJourneyInfo(id);

            if (result.Status == ResponseStatus.Success)
            {
                return(Ok(result.Data));
            }

            return(NotFound());
        }