public IActionResult GetAllPilots() { var pilots = service.GetAllPilotsInfo(); return(pilots == null?NotFound("No pilots found!") as IActionResult : Ok(mapper.Map <IEnumerable <PilotDTO> >(pilots))); }
public IActionResult GetAllPilots() { var pilots = service.GetAllPilotsInfo(); return(pilots == null?NotFound("No pilots found!") as IActionResult : Ok(pilots)); }