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