Overview
Summary
Contact
Donate
Imprint
Prompt for the
PriceHistoryView
Please create a React-JS view called "PriceHistoryView" for the fields of the PriceHistory entity. The PriceHistoryView must contain the following fields: - name: Currency type: STRING - name: Offer type: Offer - name: Price type: DOUBLE - name: ValidFrom type: DATE - name: ValidTo type: DATE The data source for the [Offer] select control should be loaded from the relative URL: "/OfferService/offer" (HTTP-GET) An existing PriceHistory entity should be loaded from the relative URL: "/OfferService/pricehistory/{id}" (HTTP-GET) If a new PriceHistory entity has been created, the new entity should be posted to the relative URL: "/OfferService/pricehistory" (HTTP-POST) If an existing PriceHistory entity has been updated, the modified entity should be sent to the relative URL: "/OfferService/pricehistory/{id}" (HTTP-PUT) If an existing PriceHistory entity has to be deleted, the following relative URL should be called: "/OfferService/pricehistory/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint