Overview
Summary
Contact
Donate
Imprint
Prompt for the
FraudCaseView
Please create a React-JS view called "FraudCaseView" for the fields of the FraudCase entity. The FraudCaseView must contain the following fields: - name: CaseType type: STRING - name: CloseDate type: DATE - name: Description type: STRING - name: Dispute type: Dispute - name: OpenDate type: DATE - name: Outcome type: STRING - name: RelatedUserAccount type: UserAccount The data source for the [RelatedUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Dispute] select control should be loaded from the relative URL: "/DisputeService/dispute" (HTTP-GET) An existing FraudCase entity should be loaded from the relative URL: "/DisputeService/fraudcase/{id}" (HTTP-GET) If a new FraudCase entity has been created, the new entity should be posted to the relative URL: "/DisputeService/fraudcase" (HTTP-POST) If an existing FraudCase entity has been updated, the modified entity should be sent to the relative URL: "/DisputeService/fraudcase/{id}" (HTTP-PUT) If an existing FraudCase entity has to be deleted, the following relative URL should be called: "/DisputeService/fraudcase/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint