Overview
Summary
Contact
Donate
Imprint
Prompt for the
TitleCrewView
Please create a React-JS view called "TitleCrewView" for the fields of the TitleCrew entity. The TitleCrewView must contain the following fields: - name: CreditOrder type: LONG - name: Person type: Person - name: RoleType type: RoleType - name: Title type: Title The data source for the [RoleType] select control should be loaded from the relative URL: "/PersonService/roletype" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing TitleCrew entity should be loaded from the relative URL: "/PersonService/titlecrew/{id}" (HTTP-GET) If a new TitleCrew entity has been created, the new entity should be posted to the relative URL: "/PersonService/titlecrew" (HTTP-POST) If an existing TitleCrew entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/titlecrew/{id}" (HTTP-PUT) If an existing TitleCrew entity has to be deleted, the following relative URL should be called: "/PersonService/titlecrew/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint