Overview
Summary
Contact
Donate
Imprint
Prompt for the
PlatformView
Please create a React-JS view called "PlatformView" for the fields of the Platform entity. The PlatformView must contain the following fields: - name: Description type: STRING - name: IsCloudBased type: BOOL - name: LaunchDate type: DATE - name: Name type: STRING - name: ProviderCompany type: Company The data source for the [ProviderCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Platform entity should be loaded from the relative URL: "/CompanyService/platform/{id}" (HTTP-GET) If a new Platform entity has been created, the new entity should be posted to the relative URL: "/CompanyService/platform" (HTTP-POST) If an existing Platform entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/platform/{id}" (HTTP-PUT) If an existing Platform entity has to be deleted, the following relative URL should be called: "/CompanyService/platform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PlatformAdoption columns: - column: Description - column: Platform - column: AdoptionDate - column: Exchange The table should have the title "PlatformAdoptions" und the data must be loaded from the server with the following relative URL: "/CompanyService/platformadoption/platform/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint