Overview
Summary
Contact
Donate
Imprint
Prompt for the
AirportTransferProviderView
Please create a React-JS view called "AirportTransferProviderView" for the fields of the AirportTransferProvider entity. The AirportTransferProviderView must contain the following fields: - name: ContactEmail type: STRING - name: ContactPhone type: STRING - name: Name type: STRING - name: PartnerAccount type: PartnerAccount The data source for the [PartnerAccount] select control should be loaded from the relative URL: "/PartnerAccountService/partneraccount" (HTTP-GET) An existing AirportTransferProvider entity should be loaded from the relative URL: "/PartnerAccountService/airporttransferprovider/{id}" (HTTP-GET) If a new AirportTransferProvider entity has been created, the new entity should be posted to the relative URL: "/PartnerAccountService/airporttransferprovider" (HTTP-POST) If an existing AirportTransferProvider entity has been updated, the modified entity should be sent to the relative URL: "/PartnerAccountService/airporttransferprovider/{id}" (HTTP-PUT) If an existing AirportTransferProvider entity has to be deleted, the following relative URL should be called: "/PartnerAccountService/airporttransferprovider/{id}" (HTTP-DELETE) 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/airporttransferprovider/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint