Overview
Summary
Contact
Donate
Imprint
Prompt for the
CountryView
Please create a React-JS view called "CountryView" for the fields of the Country entity. The CountryView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING - name: Region type: STRING An existing Country entity should be loaded from the relative URL: "/ExchangeService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/ExchangeService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/ExchangeService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/ExchangeService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regulator columns: - column: Country - column: Website - column: Name - column: Type The table should have the title "Regulators" und the data must be loaded from the server with the following relative URL: "/RegulatorService/regulator/country/{id}" 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/locationcountry/{id}" Add a HTML table to the view with the following City columns: - column: Country - column: Name The table should have the title "Citys" und the data must be loaded from the server with the following relative URL: "/CityService/city/country/{id}" Add a HTML table to the view with the following MarketMaker columns: - column: Regulator - column: Name - column: IsNasdaqMember - column: Country The table should have the title "MarketMakers" und the data must be loaded from the server with the following relative URL: "/RegulatorService/marketmaker/country/{id}" Add a HTML table to the view with the following Company columns: - column: IsForeign - column: Country - column: FoundedDate - column: Sector - column: IsTechnologyFocused - column: Name The table should have the title "Companys" und the data must be loaded from the server with the following relative URL: "/CompanyService/company/country/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint