Overview
Summary
Contact
Donate
Imprint
Prompt for the
TaxCaseView
Please create a React-JS view called "TaxCaseView" for the fields of the TaxCase entity. The TaxCaseView must contain the following fields: - name: AmountAssessed type: DOUBLE - name: Company type: Company - name: Currency type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: Jurisdiction type: Jurisdiction - name: StartDate type: DATE - name: Status type: STRING 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) An existing TaxCase entity should be loaded from the relative URL: "/BookingService/taxcase/{id}" (HTTP-GET) If a new TaxCase entity has been created, the new entity should be posted to the relative URL: "/BookingService/taxcase" (HTTP-POST) If an existing TaxCase entity has been updated, the modified entity should be sent to the relative URL: "/BookingService/taxcase/{id}" (HTTP-PUT) If an existing TaxCase entity has to be deleted, the following relative URL should be called: "/BookingService/taxcase/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint