Overview
Summary
Contact
Donate
Imprint
Prompt for the
SupportSystemView
Please create a React-JS view called "SupportSystemView" for the fields of the SupportSystem entity. The SupportSystemView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: IsThirdParty type: BOOL - name: Name type: STRING - name: Vendor type: SupportVendor The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Vendor] select control should be loaded from the relative URL: "/SupportVendorService/supportvendor" (HTTP-GET) An existing SupportSystem entity should be loaded from the relative URL: "/CompanyService/supportsystem/{id}" (HTTP-GET) If a new SupportSystem entity has been created, the new entity should be posted to the relative URL: "/CompanyService/supportsystem" (HTTP-POST) If an existing SupportSystem entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/supportsystem/{id}" (HTTP-PUT) If an existing SupportSystem entity has to be deleted, the following relative URL should be called: "/CompanyService/supportsystem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint