Overview
Summary
Contact
Donate
Imprint
Prompt for the
LawsuitPartyView
Please create a React-JS view called "LawsuitPartyView" for the fields of the LawsuitParty entity. The LawsuitPartyView must contain the following fields: - name: Lawsuit type: Lawsuit - name: PartyCompany type: Company - name: PartyPerson type: Person - name: Role type: STRING The data source for the [PartyPerson] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [PartyCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Lawsuit] select control should be loaded from the relative URL: "/PersonService/lawsuit" (HTTP-GET) An existing LawsuitParty entity should be loaded from the relative URL: "/PersonService/lawsuitparty/{id}" (HTTP-GET) If a new LawsuitParty entity has been created, the new entity should be posted to the relative URL: "/PersonService/lawsuitparty" (HTTP-POST) If an existing LawsuitParty entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/lawsuitparty/{id}" (HTTP-PUT) If an existing LawsuitParty entity has to be deleted, the following relative URL should be called: "/PersonService/lawsuitparty/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint