Overview
Summary
Contact
Donate
Imprint
Prompt for the
PayoutView
Please create a React-JS view called "PayoutView" for the fields of the Payout entity. The PayoutView must contain the following fields: - name: Amount type: DOUBLE - name: Booking type: Booking - name: Currency type: STRING - name: HostProfile type: HostProfile - name: PayoutDate type: DATE - name: PayoutMethod type: STRING - name: PayoutStatus type: STRING The data source for the [HostProfile] select control should be loaded from the relative URL: "/HostProfileService/hostprofile" (HTTP-GET) The data source for the [Booking] select control should be loaded from the relative URL: "/BookingService/booking" (HTTP-GET) An existing Payout entity should be loaded from the relative URL: "/HostProfileService/payout/{id}" (HTTP-GET) If a new Payout entity has been created, the new entity should be posted to the relative URL: "/HostProfileService/payout" (HTTP-POST) If an existing Payout entity has been updated, the modified entity should be sent to the relative URL: "/HostProfileService/payout/{id}" (HTTP-PUT) If an existing Payout entity has to be deleted, the following relative URL should be called: "/HostProfileService/payout/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint