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 An existing Country entity should be loaded from the relative URL: "/CityService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/CityService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/CityService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/CityService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following City columns: - column: Longitude - column: Country - column: Region - column: Latitude - 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 ServiceRegion columns: - column: StartDate - column: Service - column: City - column: Notes - column: EndDate - column: Country The table should have the title "ServiceRegions" und the data must be loaded from the server with the following relative URL: "/CompanyService/serviceregion/country/{id}" Add a HTML table to the view with the following Lawsuit columns: - column: JurisdictionCountry - column: FiledDate - column: Company - column: CaseName - column: ResolvedDate - column: CaseType - column: Description - column: Outcome - column: SettlementCurrency - column: JurisdictionCity - column: SettlementAmount The table should have the title "Lawsuits" und the data must be loaded from the server with the following relative URL: "/CityService/lawsuit/jurisdictioncountry/{id}" Add a HTML table to the view with the following RegulatoryAction columns: - column: City - column: Country - column: StartDate - column: AuthorityName - column: SourceReference - column: Company - column: ActionType - column: Description - column: EndDate The table should have the title "RegulatoryActions" und the data must be loaded from the server with the following relative URL: "/CompanyService/regulatoryaction/country/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint