Overview
Summary
Contact
Donate
Imprint
Prompt for the
WishlistItemView
Please create a React-JS view called "WishlistItemView" for the fields of the WishlistItem entity. The WishlistItemView must contain the following fields: - name: AddedAt type: DATE - name: Product type: Product - name: Wishlist type: Wishlist The data source for the [Product] select control should be loaded from the relative URL: "/ProductService/product" (HTTP-GET) The data source for the [Wishlist] select control should be loaded from the relative URL: "/WishlistService/wishlist" (HTTP-GET) An existing WishlistItem entity should be loaded from the relative URL: "/WishlistService/wishlistitem/{id}" (HTTP-GET) If a new WishlistItem entity has been created, the new entity should be posted to the relative URL: "/WishlistService/wishlistitem" (HTTP-POST) If an existing WishlistItem entity has been updated, the modified entity should be sent to the relative URL: "/WishlistService/wishlistitem/{id}" (HTTP-PUT) If an existing WishlistItem entity has to be deleted, the following relative URL should be called: "/WishlistService/wishlistitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint