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: Country type: Country - name: FoundedDate type: DATE - name: IsForeign type: BOOL - name: IsTechnologyFocused type: BOOL - name: Name type: STRING - name: Sector type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/ExchangeService/country" (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 Exchange columns: - column: ListingsCount - column: Type - column: FoundedDate - column: Website - column: OwnerCompany - column: Name - column: MarketCapUsd - column: Currency - column: IsElectronic - column: LocationCity - column: LocationCountry The table should have the title "Exchanges" und the data must be loaded from the server with the following relative URL: "/ExchangeService/exchange/ownercompany/{id}" Add a HTML table to the view with the following Ownership columns: - column: ParentCompany - column: OwnershipType - column: SubsidiaryCompany - column: EndDate - column: StartDate The table should have the title "Ownerships" und the data must be loaded from the server with the following relative URL: "/MarketTierService/ownership/subsidiarycompany/{id}" Add a HTML table to the view with the following Ownership columns: - column: ParentCompany - column: OwnershipType - column: SubsidiaryCompany - column: EndDate - column: StartDate The table should have the title "Ownerships" und the data must be loaded from the server with the following relative URL: "/MarketTierService/ownership/parentcompany/{id}" Add a HTML table to the view with the following MergerAttempt columns: - column: Status - column: WithdrawnDate - column: AnnouncementDate - column: BidderExchange - column: PartnerCompany - column: ReasonWithdrawn - column: TargetExchange The table should have the title "MergerAttempts" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/mergerattempt/partnercompany/{id}" Add a HTML table to the view with the following Acquisition columns: - column: AnnouncementDate - column: AmountUsd - column: CloseDate - column: Description - column: AcquirerCompany - column: TargetCompany The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CityService/acquisition/acquirercompany/{id}" Add a HTML table to the view with the following Acquisition columns: - column: AnnouncementDate - column: AmountUsd - column: CloseDate - column: Description - column: AcquirerCompany - column: TargetCompany The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CityService/acquisition/targetcompany/{id}" Add a HTML table to the view with the following Listing columns: - column: Company - column: Currency - column: IsPrimary - column: Status - column: TickerSymbol - column: MarketTier - column: ListingDate - column: Exchange The table should have the title "Listings" und the data must be loaded from the server with the following relative URL: "/ListingService/listing/company/{id}" Add a HTML table to the view with the following Platform columns: - column: ProviderCompany - column: LaunchDate - column: Name - column: IsCloudBased - column: Description The table should have the title "Platforms" und the data must be loaded from the server with the following relative URL: "/CompanyService/platform/providercompany/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint