Overview
Summary
Contact
Donate
Imprint
Prompt for the
StoreView
Please create a React-JS view called "StoreView" for the fields of the Store entity. The StoreView must contain the following fields: - name: Description type: STRING - name: LaunchDate type: DATE - name: Name type: STRING - name: ShutdownDate type: DATE An existing Store entity should be loaded from the relative URL: "/StoreService/store/{id}" (HTTP-GET) If a new Store entity has been created, the new entity should be posted to the relative URL: "/StoreService/store" (HTTP-POST) If an existing Store entity has been updated, the modified entity should be sent to the relative URL: "/StoreService/store/{id}" (HTTP-PUT) If an existing Store entity has to be deleted, the following relative URL should be called: "/StoreService/store/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Game columns: - column: Publisher - column: RevenueSharePercent - column: Title - column: IsExclusive - column: ReleaseDate - column: Developer - column: Store The table should have the title "Games" und the data must be loaded from the server with the following relative URL: "/StoreService/game/store/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint