Overview
Summary
Contact
Donate
Imprint
Prompt for the
FixedPriceOfferView
Please create a React-JS view called "FixedPriceOfferView" for the fields of the FixedPriceOffer entity. The FixedPriceOfferView must contain the following fields: - name: BuyerUserAccount type: UserAccount - name: Currency type: STRING - name: Listing type: Listing - name: OfferDate type: DATE - name: OfferedPrice type: STRING - name: Status type: STRING The data source for the [Listing] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) The data source for the [BuyerUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing FixedPriceOffer entity should be loaded from the relative URL: "/ListingService/fixedpriceoffer/{id}" (HTTP-GET) If a new FixedPriceOffer entity has been created, the new entity should be posted to the relative URL: "/ListingService/fixedpriceoffer" (HTTP-POST) If an existing FixedPriceOffer entity has been updated, the modified entity should be sent to the relative URL: "/ListingService/fixedpriceoffer/{id}" (HTTP-PUT) If an existing FixedPriceOffer entity has to be deleted, the following relative URL should be called: "/ListingService/fixedpriceoffer/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint