Overview
Summary
Services
Contact
Donate
About
Imprint
Prompt for the
CrewQualificationView
Please create a React-JS view called "CrewQualificationView" for the fields of the CrewQualification entity. The CrewQualificationView must contain the following fields: - name: AircraftModel type: AircraftModel - name: CrewMember type: CrewMember - name: QualificationType type: STRING - name: ValidFrom type: DATE - name: ValidTo type: DATE The data source for the [AircraftModel] select control should be loaded from the relative URL: "/AircraftModelService/aircraftmodel" (HTTP-GET) The data source for the [CrewMember] select control should be loaded from the relative URL: "/AirlineService/crewmember" (HTTP-GET) An existing CrewQualification entity should be loaded from the relative URL: "/AircraftModelService/crewqualification/{id}" (HTTP-GET) If a new CrewQualification entity has been created, the new entity should be posted to the relative URL: "/AircraftModelService/crewqualification" (HTTP-POST) If an existing CrewQualification entity has been updated, the modified entity should be sent to the relative URL: "/AircraftModelService/crewqualification/{id}" (HTTP-PUT) If an existing CrewQualification entity has to be deleted, the following relative URL should be called: "/AircraftModelService/crewqualification/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Services
Contact
Donate
About
Imprint