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: Description type: STRING - name: Name type: STRING - name: Website type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/TitleService/country" (HTTP-GET) An existing ProductionCompany entity should be loaded from the relative URL: "/ProductionCompanyService/productioncompany/{id}" (HTTP-GET) If a new ProductionCompany entity has been created, the new entity should be posted to the relative URL: "/ProductionCompanyService/productioncompany" (HTTP-POST) If an existing ProductionCompany entity has been updated, the modified entity should be sent to the relative URL: "/ProductionCompanyService/productioncompany/{id}" (HTTP-PUT) If an existing ProductionCompany entity has to be deleted, the following relative URL should be called: "/ProductionCompanyService/productioncompany/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TitleProductionCompany columns: - column: ProductionCompany - column: Title - column: Role The table should have the title "TitleProductionCompanys" und the data must be loaded from the server with the following relative URL: "/TitleService/titleproductioncompany/productioncompany/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint