Overview
Summary
Contact
Donate
Imprint
Prompt for the
EsportsMembershipView
Please create a React-JS view called "EsportsMembershipView" for the fields of the EsportsMembership entity. The EsportsMembershipView must contain the following fields: - name: EsportsPlayer type: EsportsPlayer - name: EsportsTeam type: EsportsTeam - name: JoinDate type: DATE - name: LeaveDate type: DATE - name: Role type: STRING The data source for the [EsportsPlayer] select control should be loaded from the relative URL: "/EsportsPlayerService/esportsplayer" (HTTP-GET) The data source for the [EsportsTeam] select control should be loaded from the relative URL: "/EsportsPlayerService/esportsteam" (HTTP-GET) An existing EsportsMembership entity should be loaded from the relative URL: "/EsportsPlayerService/esportsmembership/{id}" (HTTP-GET) If a new EsportsMembership entity has been created, the new entity should be posted to the relative URL: "/EsportsPlayerService/esportsmembership" (HTTP-POST) If an existing EsportsMembership entity has been updated, the modified entity should be sent to the relative URL: "/EsportsPlayerService/esportsmembership/{id}" (HTTP-PUT) If an existing EsportsMembership entity has to be deleted, the following relative URL should be called: "/EsportsPlayerService/esportsmembership/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint