Overview
Summary
Contact
Donate
Imprint
Prompt for the
OfficeLocationView
Please create a React-JS view called "OfficeLocationView" for the fields of the OfficeLocation entity. The OfficeLocationView must contain the following fields: - name: AddressLine type: STRING - name: City type: STRING - name: ClosedDate type: DATE - name: Company type: Company - name: Country type: STRING - name: LocationType type: STRING - name: OpenedDate type: DATE - name: PostalCode type: STRING - name: StateProvince type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing OfficeLocation entity should be loaded from the relative URL: "/CompanyService/officelocation/{id}" (HTTP-GET) If a new OfficeLocation entity has been created, the new entity should be posted to the relative URL: "/CompanyService/officelocation" (HTTP-POST) If an existing OfficeLocation entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/officelocation/{id}" (HTTP-PUT) If an existing OfficeLocation entity has to be deleted, the following relative URL should be called: "/CompanyService/officelocation/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint