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