Overview
Summary
Contact
Donate
Imprint
Prompt for the
LocationCityView
Please create a React-JS view called "LocationCityView" for the fields of the LocationCity entity. The LocationCityView must contain the following fields: - name: Latitude type: STRING - name: LocationCountry type: LocationCountry - name: LocationRegion type: LocationRegion - name: Longitude type: STRING - name: Name type: STRING The data source for the [LocationRegion] select control should be loaded from the relative URL: "/LocationCityService/locationregion" (HTTP-GET) The data source for the [LocationCountry] select control should be loaded from the relative URL: "/LocationCityService/locationcountry" (HTTP-GET) An existing LocationCity entity should be loaded from the relative URL: "/LocationCityService/locationcity/{id}" (HTTP-GET) If a new LocationCity entity has been created, the new entity should be posted to the relative URL: "/LocationCityService/locationcity" (HTTP-POST) If an existing LocationCity entity has been updated, the modified entity should be sent to the relative URL: "/LocationCityService/locationcity/{id}" (HTTP-PUT) If an existing LocationCity entity has to be deleted, the following relative URL should be called: "/LocationCityService/locationcity/{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/locationcity/{id}" Add a HTML table to the view with the following Airport columns: - column: Code - column: Name - column: Latitude - column: Longitude - column: LocationCity The table should have the title "Airports" und the data must be loaded from the server with the following relative URL: "/AirportService/airport/locationcity/{id}" Add a HTML table to the view with the following LocationDistrict columns: - column: Name - column: LocationCity The table should have the title "LocationDistricts" und the data must be loaded from the server with the following relative URL: "/PropertyService/locationdistrict/locationcity/{id}" Add a HTML table to the view with the following CarRentalLocation columns: - column: Latitude - column: PostalCode - column: Longitude - column: AddressLine2 - column: LocationCity - column: Name - column: PartnerAccount - column: AddressLine1 The table should have the title "CarRentalLocations" und the data must be loaded from the server with the following relative URL: "/CarRentalLocationService/carrentallocation/locationcity/{id}" Add a HTML table to the view with the following AirportTransferProduct columns: - column: Description - column: DestinationCity - column: MaxPassengers - column: VehicleType - column: Name - column: OriginAirport - column: OriginCity - column: DestinationAirport - column: AirportTransferProvider The table should have the title "AirportTransferProducts" und the data must be loaded from the server with the following relative URL: "/AirportService/airporttransferproduct/destinationcity/{id}" Add a HTML table to the view with the following AirportTransferProduct columns: - column: Description - column: DestinationCity - column: MaxPassengers - column: VehicleType - column: Name - column: OriginAirport - column: OriginCity - column: DestinationAirport - column: AirportTransferProvider The table should have the title "AirportTransferProducts" und the data must be loaded from the server with the following relative URL: "/AirportService/airporttransferproduct/origincity/{id}" Add a HTML table to the view with the following Attraction columns: - column: Description - column: Name - column: Latitude - column: Longitude - column: AddressLine2 - column: LocationCity - column: PartnerAccount - column: AddressLine1 - column: PostalCode The table should have the title "Attractions" und the data must be loaded from the server with the following relative URL: "/PartnerAccountService/attraction/locationcity/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint