Overview
Summary
Contact
Donate
Imprint
Prompt for the
ApplicationView
Please create a React-JS view called "ApplicationView" for the fields of the Application entity. The ApplicationView must contain the following fields: - name: Company type: Company - name: License type: STRING - name: Name type: STRING - name: Platform type: Platform - name: ProgrammingLanguage type: STRING - name: ReleaseDate type: DATE - name: Type type: STRING - name: Website type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Platform] select control should be loaded from the relative URL: "/SupportVendorService/platform" (HTTP-GET) An existing Application entity should be loaded from the relative URL: "/CompanyService/application/{id}" (HTTP-GET) If a new Application entity has been created, the new entity should be posted to the relative URL: "/CompanyService/application" (HTTP-POST) If an existing Application entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/application/{id}" (HTTP-PUT) If an existing Application entity has to be deleted, the following relative URL should be called: "/CompanyService/application/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint