Overview
Summary
Contact
Donate
Imprint
Prompt for the
ListingPhotoView
Please create a React-JS view called "ListingPhotoView" for the fields of the ListingPhoto entity. The ListingPhotoView must contain the following fields: - name: Caption type: STRING - name: CreatedAt type: DATE - name: Listing type: Listing - name: SortOrder type: INT - name: Url type: STRING The data source for the [Listing] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) An existing ListingPhoto entity should be loaded from the relative URL: "/HostProfileService/listingphoto/{id}" (HTTP-GET) If a new ListingPhoto entity has been created, the new entity should be posted to the relative URL: "/HostProfileService/listingphoto" (HTTP-POST) If an existing ListingPhoto entity has been updated, the modified entity should be sent to the relative URL: "/HostProfileService/listingphoto/{id}" (HTTP-PUT) If an existing ListingPhoto entity has to be deleted, the following relative URL should be called: "/HostProfileService/listingphoto/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint