Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProductionCompanyView
Please create a React-JS view called "ProductionCompanyView" for the fields of the ProductionCompany entity. The ProductionCompanyView 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 ProductionCompany entity should be loaded from the relative URL: "/CountryService/productioncompany/{id}" (HTTP-GET) If a new ProductionCompany entity has been created, the new entity should be posted to the relative URL: "/CountryService/productioncompany" (HTTP-POST) If an existing ProductionCompany entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/productioncompany/{id}" (HTTP-PUT) If an existing ProductionCompany entity has to be deleted, the following relative URL should be called: "/CountryService/productioncompany/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ContentTitle columns: - column: ProductionCompany - column: ReleaseDate - column: Synopsis - column: ImdbId - column: OriginalTitle - column: IsNetflixOriginal - column: ContentType - column: LocalizedTitle - column: RuntimeMinutes The table should have the title "ContentTitles" und the data must be loaded from the server with the following relative URL: "/ContentTitleService/contenttitle/productioncompany/{id}" Add a HTML table to the view with the following ContentDeal columns: - column: DealType - column: Currency - column: ProductionCompany - column: Name - column: Notes - column: EndDate - column: Company - column: StartDate - column: ValueAmount The table should have the title "ContentDeals" und the data must be loaded from the server with the following relative URL: "/CompanyService/contentdeal/productioncompany/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint