Overview
Summary
Contact
Donate
Imprint
Prompt for the
PhotoRatingView
Please create a React-JS view called "PhotoRatingView" for the fields of the PhotoRating entity. The PhotoRatingView must contain the following fields: - name: Photo type: Photo - name: RatedUtc type: DATE - name: RatingValue type: LONG - name: UserAccount type: UserAccount The data source for the [Photo] select control should be loaded from the relative URL: "/PhotoService/photo" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing PhotoRating entity should be loaded from the relative URL: "/PhotoService/photorating/{id}" (HTTP-GET) If a new PhotoRating entity has been created, the new entity should be posted to the relative URL: "/PhotoService/photorating" (HTTP-POST) If an existing PhotoRating entity has been updated, the modified entity should be sent to the relative URL: "/PhotoService/photorating/{id}" (HTTP-PUT) If an existing PhotoRating entity has to be deleted, the following relative URL should be called: "/PhotoService/photorating/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint