Overview
Summary
Contact
Donate
Imprint
Prompt for the
PaymentCardView
Please create a React-JS view called "PaymentCardView" for the fields of the PaymentCard entity. The PaymentCardView must contain the following fields: - name: CardholderName type: STRING - name: CardNetwork type: STRING - name: Country type: Country - name: ExpiryMonth type: INT - name: ExpiryYear type: INT - name: FundingSource type: FundingSource - name: Last4 type: STRING - name: VerifiedAt type: DATE The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) The data source for the [FundingSource] select control should be loaded from the relative URL: "/FundingSourceService/fundingsource" (HTTP-GET) An existing PaymentCard entity should be loaded from the relative URL: "/FundingSourceService/paymentcard/{id}" (HTTP-GET) If a new PaymentCard entity has been created, the new entity should be posted to the relative URL: "/FundingSourceService/paymentcard" (HTTP-POST) If an existing PaymentCard entity has been updated, the modified entity should be sent to the relative URL: "/FundingSourceService/paymentcard/{id}" (HTTP-PUT) If an existing PaymentCard entity has to be deleted, the following relative URL should be called: "/FundingSourceService/paymentcard/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint