Overview
Summary
Contact
Donate
Imprint
Prompt for the
EpisodeView
Please create a React-JS view called "EpisodeView" for the fields of the Episode entity. The EpisodeView must contain the following fields: - name: ContentTitle type: ContentTitle - name: EpisodeNumber type: LONG - name: ReleaseDate type: DATE - name: RuntimeMinutes type: LONG - name: Season type: Season - name: Synopsis type: STRING - name: Title type: STRING The data source for the [Season] select control should be loaded from the relative URL: "/SeasonService/season" (HTTP-GET) The data source for the [ContentTitle] select control should be loaded from the relative URL: "/ContentTitleService/contenttitle" (HTTP-GET) An existing Episode entity should be loaded from the relative URL: "/SeasonService/episode/{id}" (HTTP-GET) If a new Episode entity has been created, the new entity should be posted to the relative URL: "/SeasonService/episode" (HTTP-POST) If an existing Episode entity has been updated, the modified entity should be sent to the relative URL: "/SeasonService/episode/{id}" (HTTP-PUT) If an existing Episode entity has to be deleted, the following relative URL should be called: "/SeasonService/episode/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint