Overview
Summary
Contact
Donate
Imprint
Prompt for the
FineView
Please create a React-JS view called "FineView" for the fields of the Fine entity. The FineView must contain the following fields: - name: Amount type: DOUBLE - name: Company type: Company - name: Currency type: STRING - name: DecisionDate type: DATE - name: Description type: STRING - name: Jurisdiction type: Jurisdiction - name: Regulation type: Regulation The data source for the [Jurisdiction] select control should be loaded from the relative URL: "/JurisdictionService/jurisdiction" (HTTP-GET) The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Regulation] select control should be loaded from the relative URL: "/JurisdictionService/regulation" (HTTP-GET) An existing Fine entity should be loaded from the relative URL: "/JurisdictionService/fine/{id}" (HTTP-GET) If a new Fine entity has been created, the new entity should be posted to the relative URL: "/JurisdictionService/fine" (HTTP-POST) If an existing Fine entity has been updated, the modified entity should be sent to the relative URL: "/JurisdictionService/fine/{id}" (HTTP-PUT) If an existing Fine entity has to be deleted, the following relative URL should be called: "/JurisdictionService/fine/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint