Overview
Summary
Contact
Donate
Imprint
Prompt for the
RecallView
Please create a React-JS view called "RecallView" for the fields of the Recall entity. The RecallView must contain the following fields: - name: AffectedUnits type: INT - name: AnnouncementDate type: DATE - name: IssueDescription type: STRING - name: MarketRegion type: STRING - name: RecallCode type: STRING - name: VehicleModel type: VehicleModel The data source for the [VehicleModel] select control should be loaded from the relative URL: "/VehicleModelService/vehiclemodel" (HTTP-GET) An existing Recall entity should be loaded from the relative URL: "/VehicleModelService/recall/{id}" (HTTP-GET) If a new Recall entity has been created, the new entity should be posted to the relative URL: "/VehicleModelService/recall" (HTTP-POST) If an existing Recall entity has been updated, the modified entity should be sent to the relative URL: "/VehicleModelService/recall/{id}" (HTTP-PUT) If an existing Recall entity has to be deleted, the following relative URL should be called: "/VehicleModelService/recall/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint