public ActionResult <IList <AirPlane> > PassangersByAirplane(int airPlaneId) { var result = _airplaneService.GetBookWithAllUsers(airPlaneId).ToList(); return(Ok(result)); }