Overview
Summary
Contact
Donate
Imprint
Prompt for the
SubscriptionPaymentView
Please create a React-JS view called "SubscriptionPaymentView" for the fields of the SubscriptionPayment entity. The SubscriptionPaymentView must contain the following fields: - name: Amount type: DOUBLE - name: ChargeDate type: DATE - name: Currency type: Currency - name: Status type: STRING - name: Subscription type: Subscription - name: Transaction type: Transaction The data source for the [Transaction] select control should be loaded from the relative URL: "/TransactionService/transaction" (HTTP-GET) The data source for the [Currency] select control should be loaded from the relative URL: "/CurrencyService/currency" (HTTP-GET) The data source for the [Subscription] select control should be loaded from the relative URL: "/SubscriptionService/subscription" (HTTP-GET) An existing SubscriptionPayment entity should be loaded from the relative URL: "/SubscriptionService/subscriptionpayment/{id}" (HTTP-GET) If a new SubscriptionPayment entity has been created, the new entity should be posted to the relative URL: "/SubscriptionService/subscriptionpayment" (HTTP-POST) If an existing SubscriptionPayment entity has been updated, the modified entity should be sent to the relative URL: "/SubscriptionService/subscriptionpayment/{id}" (HTTP-PUT) If an existing SubscriptionPayment entity has to be deleted, the following relative URL should be called: "/SubscriptionService/subscriptionpayment/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint