Overview
Summary
Contact
Donate
Imprint
Prompt for the
PersonAwardView
Please create a React-JS view called "PersonAwardView" for the fields of the PersonAward entity. The PersonAwardView must contain the following fields: - name: AwardCategory type: AwardCategory - name: AwardEventEdition type: AwardEventEdition - name: IsWinner type: BOOL - name: Notes type: STRING - name: Person type: Person - name: Title type: Title The data source for the [AwardCategory] select control should be loaded from the relative URL: "/AwardEventService/awardcategory" (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 [AwardEventEdition] select control should be loaded from the relative URL: "/AwardEventEditionService/awardeventedition" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing PersonAward entity should be loaded from the relative URL: "/AwardEventEditionService/personaward/{id}" (HTTP-GET) If a new PersonAward entity has been created, the new entity should be posted to the relative URL: "/AwardEventEditionService/personaward" (HTTP-POST) If an existing PersonAward entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventEditionService/personaward/{id}" (HTTP-PUT) If an existing PersonAward entity has to be deleted, the following relative URL should be called: "/AwardEventEditionService/personaward/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint