Overview
Summary
Contact
Donate
Imprint
Prompt for the
LocationCountryView
Please create a React-JS view called "LocationCountryView" for the fields of the LocationCountry entity. The LocationCountryView must contain the following fields: - name: Code type: STRING - name: Name type: STRING An existing LocationCountry entity should be loaded from the relative URL: "/LocationCityService/locationcountry/{id}" (HTTP-GET) If a new LocationCountry entity has been created, the new entity should be posted to the relative URL: "/LocationCityService/locationcountry" (HTTP-POST) If an existing LocationCountry entity has been updated, the modified entity should be sent to the relative URL: "/LocationCityService/locationcountry/{id}" (HTTP-PUT) If an existing LocationCountry entity has to be deleted, the following relative URL should be called: "/LocationCityService/locationcountry/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Property columns: - column: Latitude - column: StarRating - column: AddressLine1 - column: LocationCity - column: AddressLine2 - column: PropertyType - column: LocationDistrict - column: IsActive - column: PostalCode - column: CheckInTo - column: LocationCountry - column: CreatedAt - column: CheckOutFrom - column: PartnerAccount - column: Longitude - column: CheckInFrom - column: CheckOutTo - column: Name The table should have the title "Propertys" und the data must be loaded from the server with the following relative URL: "/PropertyService/property/locationcountry/{id}" Add a HTML table to the view with the following LocationCity columns: - column: Name - column: LocationRegion - column: LocationCountry - column: Latitude - column: Longitude The table should have the title "LocationCitys" und the data must be loaded from the server with the following relative URL: "/LocationCityService/locationcity/locationcountry/{id}" Add a HTML table to the view with the following FlightPassenger columns: - column: NationalityCountry - column: PassengerType - column: DocumentNumber - column: FullName - column: FlightBooking - column: DateOfBirth The table should have the title "FlightPassengers" und the data must be loaded from the server with the following relative URL: "/LocationCityService/flightpassenger/nationalitycountry/{id}" Add a HTML table to the view with the following LocationRegion columns: - column: Name - column: LocationCountry The table should have the title "LocationRegions" und the data must be loaded from the server with the following relative URL: "/LocationCityService/locationregion/locationcountry/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint