Overview
Summary
Contact
Donate
Imprint
Prompt for the
CountryView
Please create a React-JS view called "CountryView" for the fields of the Country entity. The CountryView must contain the following fields: - name: IsoCode2 type: STRING - name: IsoCode3 type: STRING - name: Name type: STRING An existing Country entity should be loaded from the relative URL: "/FulfillmentCenterService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/FulfillmentCenterService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/FulfillmentCenterService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/FulfillmentCenterService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Address columns: - column: Line2 - column: CreatedAt - column: City - column: Country - column: PostalCode - column: StateRegion - column: Line1 - column: UpdatedAt The table should have the title "Addresss" und the data must be loaded from the server with the following relative URL: "/FulfillmentCenterService/address/country/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint