Overview
Summary
Contact
Donate
Imprint
Prompt for the
LabelView
Please create a React-JS view called "LabelView" for the fields of the Label entity. The LabelView must contain the following fields: - name: Country type: Country - name: Name type: STRING - name: Website type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Label entity should be loaded from the relative URL: "/CountryService/label/{id}" (HTTP-GET) If a new Label entity has been created, the new entity should be posted to the relative URL: "/CountryService/label" (HTTP-POST) If an existing Label entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/label/{id}" (HTTP-PUT) If an existing Label entity has to be deleted, the following relative URL should be called: "/CountryService/label/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Album columns: - column: Title - column: ReleaseDate - column: Label The table should have the title "Albums" und the data must be loaded from the server with the following relative URL: "/TrackService/album/label/{id}" Add a HTML table to the view with the following RoyaltyRecipient columns: - column: Label - column: Type - column: Artist - column: NameOverride The table should have the title "RoyaltyRecipients" und the data must be loaded from the server with the following relative URL: "/CountryService/royaltyrecipient/label/{id}" Add a HTML table to the view with the following TrackLabel columns: - column: Label - column: Track The table should have the title "TrackLabels" und the data must be loaded from the server with the following relative URL: "/CountryService/tracklabel/label/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint