Overview
Summary
Services
Contact
Donate
About
Imprint
Prompt for the
FlightCrewAssignmentView
Please create a React-JS view called "FlightCrewAssignmentView" for the fields of the FlightCrewAssignment entity. The FlightCrewAssignmentView must contain the following fields: - name: CheckInTime type: STRING - name: CheckOutTime type: STRING - name: CrewMember type: CrewMember - name: DutyRole type: STRING - name: FlightInstance type: FlightInstance The data source for the [FlightInstance] select control should be loaded from the relative URL: "/FlightInstanceService/flightinstance" (HTTP-GET) The data source for the [CrewMember] select control should be loaded from the relative URL: "/AirlineService/crewmember" (HTTP-GET) An existing FlightCrewAssignment entity should be loaded from the relative URL: "/FlightInstanceService/flightcrewassignment/{id}" (HTTP-GET) If a new FlightCrewAssignment entity has been created, the new entity should be posted to the relative URL: "/FlightInstanceService/flightcrewassignment" (HTTP-POST) If an existing FlightCrewAssignment entity has been updated, the modified entity should be sent to the relative URL: "/FlightInstanceService/flightcrewassignment/{id}" (HTTP-PUT) If an existing FlightCrewAssignment entity has to be deleted, the following relative URL should be called: "/FlightInstanceService/flightcrewassignment/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Services
Contact
Donate
About
Imprint