Overview
Summary
Contact
Donate
Imprint
Prompt for the
OfficeView
Please create a React-JS view called "OfficeView" for the fields of the Office entity. The OfficeView must contain the following fields: - name: City type: STRING - name: ClosedOn type: DATE - name: CompanyEntity type: CompanyEntity - name: Country type: Country - name: IsHeadquarters type: BOOL - name: IsOperationalHq type: BOOL - name: OpenedOn type: DATE The data source for the [CompanyEntity] select control should be loaded from the relative URL: "/CompanyEntityService/companyentity" (HTTP-GET) The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Office entity should be loaded from the relative URL: "/CompanyEntityService/office/{id}" (HTTP-GET) If a new Office entity has been created, the new entity should be posted to the relative URL: "/CompanyEntityService/office" (HTTP-POST) If an existing Office entity has been updated, the modified entity should be sent to the relative URL: "/CompanyEntityService/office/{id}" (HTTP-PUT) If an existing Office entity has to be deleted, the following relative URL should be called: "/CompanyEntityService/office/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint