Overview
Summary
Contact
Donate
Imprint
Prompt for the
LobbyingActivityView
Please create a React-JS view called "LobbyingActivityView" for the fields of the LobbyingActivity entity. The LobbyingActivityView must contain the following fields: - name: AmountUsd type: DOUBLE - name: City type: STRING - name: Company type: Company - name: Country type: STRING - name: EndYear type: INT - name: JurisdictionLevel type: STRING - name: Notes type: STRING - name: StartYear type: INT - name: StateProvince type: STRING - name: Topic type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing LobbyingActivity entity should be loaded from the relative URL: "/CompanyService/lobbyingactivity/{id}" (HTTP-GET) If a new LobbyingActivity entity has been created, the new entity should be posted to the relative URL: "/CompanyService/lobbyingactivity" (HTTP-POST) If an existing LobbyingActivity entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/lobbyingactivity/{id}" (HTTP-PUT) If an existing LobbyingActivity entity has to be deleted, the following relative URL should be called: "/CompanyService/lobbyingactivity/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint