Overview
Summary
Contact
Donate
Imprint
Prompt for the
BidView
Please create a React-JS view called "BidView" for the fields of the Bid entity. The BidView must contain the following fields: - name: Auction type: Auction - name: BidAmount type: STRING - name: BidderUserAccount type: UserAccount - name: BidTime type: DATE - name: Currency type: STRING - name: IsWinning type: BOOL The data source for the [Auction] select control should be loaded from the relative URL: "/AuctionService/auction" (HTTP-GET) The data source for the [BidderUserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Bid entity should be loaded from the relative URL: "/AuctionService/bid/{id}" (HTTP-GET) If a new Bid entity has been created, the new entity should be posted to the relative URL: "/AuctionService/bid" (HTTP-POST) If an existing Bid entity has been updated, the modified entity should be sent to the relative URL: "/AuctionService/bid/{id}" (HTTP-PUT) If an existing Bid entity has to be deleted, the following relative URL should be called: "/AuctionService/bid/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint