Exemple #1
0
        public IActionResult GetCrew(long id)
        {
            var crew = service.GetCrewInfo(id);

            return(crew == null?NotFound($"Crew with id = {id} not found!") as IActionResult
                   : Ok(mapper.Map <CrewDTO>(crew)));
        }