Overview
Summary
Contact
Donate
Imprint
Prompt for the
MemorialView
Please create a React-JS view called "MemorialView" for the fields of the Memorial entity. The MemorialView must contain the following fields: - name: Description type: STRING - name: Location type: Location - name: Name type: STRING - name: RelatedAccident type: Accident - name: UnveiledOn type: DATE The data source for the [RelatedAccident] select control should be loaded from the relative URL: "/LocationService/accident" (HTTP-GET) The data source for the [Location] select control should be loaded from the relative URL: "/LocationService/location" (HTTP-GET) An existing Memorial entity should be loaded from the relative URL: "/EngineService/memorial/{id}" (HTTP-GET) If a new Memorial entity has been created, the new entity should be posted to the relative URL: "/EngineService/memorial" (HTTP-POST) If an existing Memorial entity has been updated, the modified entity should be sent to the relative URL: "/EngineService/memorial/{id}" (HTTP-PUT) If an existing Memorial entity has to be deleted, the following relative URL should be called: "/EngineService/memorial/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint