Overview
Summary
Services
Contact
Donate
About
Imprint
Prompt for the
AircraftManufacturerView
Please create a React-JS view called "AircraftManufacturerView" for the fields of the AircraftManufacturer entity. The AircraftManufacturerView must contain the following fields: - name: Country type: Country - name: FoundedYear type: LONG - name: Name type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing AircraftManufacturer entity should be loaded from the relative URL: "/CountryService/aircraftmanufacturer/{id}" (HTTP-GET) If a new AircraftManufacturer entity has been created, the new entity should be posted to the relative URL: "/CountryService/aircraftmanufacturer" (HTTP-POST) If an existing AircraftManufacturer entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/aircraftmanufacturer/{id}" (HTTP-PUT) If an existing AircraftManufacturer entity has to be deleted, the following relative URL should be called: "/CountryService/aircraftmanufacturer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AircraftModel columns: - column: IataCode - column: Manufacturer - column: TypicalSeating - column: Name - column: IcaoCode - column: RangeKm The table should have the title "AircraftModels" und the data must be loaded from the server with the following relative URL: "/AircraftModelService/aircraftmodel/manufacturer/{id}"
Copy prompt
Overview
Summary
Services
Contact
Donate
About
Imprint