Overview
Summary
Contact
Donate
Imprint
Prompt for the
ReviewCommentView
Please create a React-JS view called "ReviewCommentView" for the fields of the ReviewComment entity. The ReviewCommentView must contain the following fields: - name: Body type: STRING - name: CreatedAt type: DATE - name: Customer type: Customer - name: Review type: Review The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) The data source for the [Review] select control should be loaded from the relative URL: "/CustomerService/review" (HTTP-GET) An existing ReviewComment entity should be loaded from the relative URL: "/CustomerService/reviewcomment/{id}" (HTTP-GET) If a new ReviewComment entity has been created, the new entity should be posted to the relative URL: "/CustomerService/reviewcomment" (HTTP-POST) If an existing ReviewComment entity has been updated, the modified entity should be sent to the relative URL: "/CustomerService/reviewcomment/{id}" (HTTP-PUT) If an existing ReviewComment entity has to be deleted, the following relative URL should be called: "/CustomerService/reviewcomment/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint