Overview
Summary
Contact
Donate
Imprint
Prompt for the
MarketRegionView
Please create a React-JS view called "MarketRegionView" for the fields of the MarketRegion entity. The MarketRegionView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing MarketRegion entity should be loaded from the relative URL: "/MarketRegionService/marketregion/{id}" (HTTP-GET) If a new MarketRegion entity has been created, the new entity should be posted to the relative URL: "/MarketRegionService/marketregion" (HTTP-POST) If an existing MarketRegion entity has been updated, the modified entity should be sent to the relative URL: "/MarketRegionService/marketregion/{id}" (HTTP-PUT) If an existing MarketRegion entity has to be deleted, the following relative URL should be called: "/MarketRegionService/marketregion/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RoyaltyStatement columns: - column: PeriodStart - column: RevenueAds - column: TotalStreams - column: PeriodEnd - column: RevenueSubscriptions - column: MarketRegion The table should have the title "RoyaltyStatements" und the data must be loaded from the server with the following relative URL: "/MarketRegionService/royaltystatement/marketregion/{id}" Add a HTML table to the view with the following CountryRegion columns: - column: MarketRegion - column: Country The table should have the title "CountryRegions" und the data must be loaded from the server with the following relative URL: "/MarketRegionService/countryregion/marketregion/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint