Overview
Summary
Contact
Donate
Imprint
Prompt for the
TransactionItemView
Please create a React-JS view called "TransactionItemView" for the fields of the TransactionItem entity. The TransactionItemView must contain the following fields: - name: Description type: STRING - name: Name type: STRING - name: Quantity type: DOUBLE - name: TaxAmount type: DOUBLE - name: Transaction type: Transaction - name: UnitAmount type: DOUBLE The data source for the [Transaction] select control should be loaded from the relative URL: "/TransactionService/transaction" (HTTP-GET) An existing TransactionItem entity should be loaded from the relative URL: "/TransactionService/transactionitem/{id}" (HTTP-GET) If a new TransactionItem entity has been created, the new entity should be posted to the relative URL: "/TransactionService/transactionitem" (HTTP-POST) If an existing TransactionItem entity has been updated, the modified entity should be sent to the relative URL: "/TransactionService/transactionitem/{id}" (HTTP-PUT) If an existing TransactionItem entity has to be deleted, the following relative URL should be called: "/TransactionService/transactionitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint