Overview
Summary
Contact
Donate
Imprint
Prompt for the
EngineView
Please create a React-JS view called "EngineView" for the fields of the Engine entity. The EngineView must contain the following fields: - name: Cylinders type: INT - name: FuelType type: STRING - name: Manufacturer type: Organization - name: Name type: STRING - name: PowerHp type: STRING - name: PowerKw type: STRING The data source for the [Manufacturer] select control should be loaded from the relative URL: "/OrganizationService/organization" (HTTP-GET) An existing Engine entity should be loaded from the relative URL: "/EngineService/engine/{id}" (HTTP-GET) If a new Engine entity has been created, the new entity should be posted to the relative URL: "/EngineService/engine" (HTTP-POST) If an existing Engine entity has been updated, the modified entity should be sent to the relative URL: "/EngineService/engine/{id}" (HTTP-PUT) If an existing Engine entity has to be deleted, the following relative URL should be called: "/EngineService/engine/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZeppelinEngine columns: - column: Engine - column: Position - column: Count - column: Zeppelin The table should have the title "ZeppelinEngines" und the data must be loaded from the server with the following relative URL: "/EngineService/zeppelinengine/engine/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint