Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyView
Please create a React-JS view called "CompanyView" for the fields of the Company entity. The CompanyView must contain the following fields: - name: CountryOfOrigin type: STRING - name: FoundedDate type: DATE - name: HeadquartersCity type: STRING - name: HeadquartersCountry type: STRING - name: HeadquartersRegion type: STRING - name: Industry type: STRING - name: LegalName type: STRING - name: Name type: STRING - name: Website type: STRING An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Headquarters columns: - column: Country - column: Region - column: AddressLine - column: City - column: Company - column: EndDate - column: StartDate The table should have the title "Headquarterss" und the data must be loaded from the server with the following relative URL: "/CountryService/headquarters/company/{id}" Add a HTML table to the view with the following LawsuitParty columns: - column: Lawsuit - column: Company - column: Role The table should have the title "LawsuitPartys" und the data must be loaded from the server with the following relative URL: "/ContentTypeService/lawsuitparty/company/{id}" Add a HTML table to the view with the following ServiceSupply columns: - column: Url - column: Company - column: LaunchDate - column: Description - column: Type - column: Name - column: Status The table should have the title "ServiceSupplys" und the data must be loaded from the server with the following relative URL: "/ServiceSupplyService/servicesupply/company/{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/company/{id}" Add a HTML table to the view with the following PersonRole columns: - column: EndDate - column: Person - column: StartDate - column: Company - column: RoleName The table should have the title "PersonRoles" und the data must be loaded from the server with the following relative URL: "/CompanyService/personrole/company/{id}" Add a HTML table to the view with the following RecommendationAlgorithm columns: - column: Description - column: Name - column: RetiredDate - column: Company - column: IntroducedDate The table should have the title "RecommendationAlgorithms" und the data must be loaded from the server with the following relative URL: "/RecommendationAlgorithmService/recommendationalgorithm/company/{id}" Add a HTML table to the view with the following RegulatoryEvent columns: - column: Company - column: Name - column: Description - column: EventDate - column: Country The table should have the title "RegulatoryEvents" und the data must be loaded from the server with the following relative URL: "/CompanyService/regulatoryevent/company/{id}" Add a HTML table to the view with the following Subsidiary columns: - column: ParentCompany - column: EndDate - column: Name - column: Description - column: Company - column: StartDate The table should have the title "Subsidiarys" und the data must be loaded from the server with the following relative URL: "/SubscriptionPlanService/subsidiary/parentcompany/{id}" Add a HTML table to the view with the following Subsidiary columns: - column: ParentCompany - column: EndDate - column: Name - column: Description - column: Company - column: StartDate The table should have the title "Subsidiarys" und the data must be loaded from the server with the following relative URL: "/SubscriptionPlanService/subsidiary/company/{id}" Add a HTML table to the view with the following PoliticalActionCommittee columns: - column: Purpose - column: Name - column: Company - column: FormationDate - column: Acronym The table should have the title "PoliticalActionCommittees" und the data must be loaded from the server with the following relative URL: "/CompanyService/politicalactioncommittee/company/{id}" Add a HTML table to the view with the following Investment columns: - column: Country - column: Company - column: StartDate - column: Amount - column: EndDate - column: Currency - column: Description The table should have the title "Investments" und the data must be loaded from the server with the following relative URL: "/CountryService/investment/company/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint