Overview
Summary
Contact
Donate
Imprint
Prompt for the
GameView
Please create a React-JS view called "GameView" for the fields of the Game entity. The GameView must contain the following fields: - name: Developer type: STRING - name: IsExclusive type: BOOL - name: Publisher type: STRING - name: ReleaseDate type: DATE - name: RevenueSharePercent type: DOUBLE - name: Store type: Store - name: Title type: STRING The data source for the [Store] select control should be loaded from the relative URL: "/StoreService/store" (HTTP-GET) An existing Game entity should be loaded from the relative URL: "/StoreService/game/{id}" (HTTP-GET) If a new Game entity has been created, the new entity should be posted to the relative URL: "/StoreService/game" (HTTP-POST) If an existing Game entity has been updated, the modified entity should be sent to the relative URL: "/StoreService/game/{id}" (HTTP-PUT) If an existing Game entity has to be deleted, the following relative URL should be called: "/StoreService/game/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint