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: City type: City - name: Country type: Country - name: FoundedDate type: DATE - name: HeadquartersAddress type: STRING - name: Industry type: STRING - name: IsPublic type: BOOL - name: LegalForm 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: "/CountryService/country" (HTTP-GET) The data source for the [City] select control should be loaded from the relative URL: "/ListingService/city" (HTTP-GET) 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 Office columns: - column: IsHeadquarters - column: Company - column: Country - column: AddressLine - column: City - column: OpenedDate - column: ClosedDate The table should have the title "Offices" und the data must be loaded from the server with the following relative URL: "/AdvocacyGroupService/office/company/{id}" Add a HTML table to the view with the following CompanyAdvocacyGroupRelation columns: - column: AdvocacyGroup - column: Description - column: Company - column: RelationType The table should have the title "CompanyAdvocacyGroupRelations" und the data must be loaded from the server with the following relative URL: "/AdvocacyGroupService/companyadvocacygrouprelation/company/{id}" Add a HTML table to the view with the following RegulationPlatformImpact columns: - column: ImpactType - column: Description - column: Company - column: Regulation The table should have the title "RegulationPlatformImpacts" und the data must be loaded from the server with the following relative URL: "/CompanyService/regulationplatformimpact/company/{id}" Add a HTML table to the view with the following FundingRound columns: - column: AmountUsd - column: SourceReference - column: AnnouncementDate - column: LeadInvestor - column: RoundType - column: Company The table should have the title "FundingRounds" und the data must be loaded from the server with the following relative URL: "/FundingRoundService/fundinground/company/{id}" Add a HTML table to the view with the following TaxCase columns: - column: Status - column: EndDate - column: Description - column: Currency - column: StartDate - column: AmountAssessed - column: Company - column: Jurisdiction The table should have the title "TaxCases" und the data must be loaded from the server with the following relative URL: "/BookingService/taxcase/company/{id}" Add a HTML table to the view with the following StockListing columns: - column: Exchange - column: Isin - column: ListingDate - column: Segment - column: Ticker - column: Company The table should have the title "StockListings" und the data must be loaded from the server with the following relative URL: "/CompanyService/stocklisting/company/{id}" Add a HTML table to the view with the following DataProcessingPartner columns: - column: Country - column: ProcessingType - column: Name - column: Description - column: Company - column: StartDate - column: EndDate The table should have the title "DataProcessingPartners" und the data must be loaded from the server with the following relative URL: "/CountryService/dataprocessingpartner/company/{id}" Add a HTML table to the view with the following Fine columns: - column: Regulation - column: Jurisdiction - column: Currency - column: Amount - column: DecisionDate - column: Description - column: Company The table should have the title "Fines" und the data must be loaded from the server with the following relative URL: "/JurisdictionService/fine/company/{id}" Add a HTML table to the view with the following CovidImpact columns: - column: PeriodEnd - column: MetricType - column: Company - column: Market - column: Currency - column: Notes - column: Value - column: PeriodStart The table should have the title "CovidImpacts" und the data must be loaded from the server with the following relative URL: "/MarketService/covidimpact/company/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint