Overview
Summary
Contact
Donate
Imprint
Prompt for the
RatingSystemView
Please create a React-JS view called "RatingSystemView" for the fields of the RatingSystem entity. The RatingSystemView must contain the following fields: - name: Country type: Country - name: Description type: STRING - name: Name type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/TitleService/country" (HTTP-GET) An existing RatingSystem entity should be loaded from the relative URL: "/ProductionCompanyService/ratingsystem/{id}" (HTTP-GET) If a new RatingSystem entity has been created, the new entity should be posted to the relative URL: "/ProductionCompanyService/ratingsystem" (HTTP-POST) If an existing RatingSystem entity has been updated, the modified entity should be sent to the relative URL: "/ProductionCompanyService/ratingsystem/{id}" (HTTP-PUT) If an existing RatingSystem entity has to be deleted, the following relative URL should be called: "/ProductionCompanyService/ratingsystem/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ContentRating columns: - column: Title - column: RatingSystem - column: RatingDescription - column: RatingCode The table should have the title "ContentRatings" und the data must be loaded from the server with the following relative URL: "/ProductionCompanyService/contentrating/ratingsystem/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint