Overview
Summary
Services
Contact
Donate
About
Imprint
Prompt for the
LoyaltyTransactionView
Please create a React-JS view called "LoyaltyTransactionView" for the fields of the LoyaltyTransaction entity. The LoyaltyTransactionView must contain the following fields: - name: Description type: STRING - name: LoyaltyAccount type: LoyaltyAccount - name: Miles type: LONG - name: RelatedFlightInstance type: FlightInstance - name: TransactionDate type: STRING - name: TransactionType type: STRING The data source for the [RelatedFlightInstance] select control should be loaded from the relative URL: "/FlightInstanceService/flightinstance" (HTTP-GET) The data source for the [LoyaltyAccount] select control should be loaded from the relative URL: "/LoyaltyAccountService/loyaltyaccount" (HTTP-GET) An existing LoyaltyTransaction entity should be loaded from the relative URL: "/LoyaltyAccountService/loyaltytransaction/{id}" (HTTP-GET) If a new LoyaltyTransaction entity has been created, the new entity should be posted to the relative URL: "/LoyaltyAccountService/loyaltytransaction" (HTTP-POST) If an existing LoyaltyTransaction entity has been updated, the modified entity should be sent to the relative URL: "/LoyaltyAccountService/loyaltytransaction/{id}" (HTTP-PUT) If an existing LoyaltyTransaction entity has to be deleted, the following relative URL should be called: "/LoyaltyAccountService/loyaltytransaction/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Services
Contact
Donate
About
Imprint