Overview
Summary
Contact
Donate
Imprint
Prompt for the
ContentDealView
Please create a React-JS view called "ContentDealView" for the fields of the ContentDeal entity. The ContentDealView must contain the following fields: - name: Company type: Company - name: Currency type: STRING - name: DealType type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: Notes type: STRING - name: ProductionCompany type: ProductionCompany - name: StartDate type: DATE - name: ValueAmount type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [ProductionCompany] select control should be loaded from the relative URL: "/CountryService/productioncompany" (HTTP-GET) An existing ContentDeal entity should be loaded from the relative URL: "/CompanyService/contentdeal/{id}" (HTTP-GET) If a new ContentDeal entity has been created, the new entity should be posted to the relative URL: "/CompanyService/contentdeal" (HTTP-POST) If an existing ContentDeal entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/contentdeal/{id}" (HTTP-PUT) If an existing ContentDeal entity has to be deleted, the following relative URL should be called: "/CompanyService/contentdeal/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ContentDealTitle columns: - column: ContentDeal - column: ContentTitle - column: Notes The table should have the title "ContentDealTitles" und the data must be loaded from the server with the following relative URL: "/PersonService/contentdealtitle/contentdeal/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint