Overview
Summary
Contact
Donate
Imprint
Prompt for the
RecommendationEventView
Please create a React-JS view called "RecommendationEventView" for the fields of the RecommendationEvent entity. The RecommendationEventView must contain the following fields: - name: ContentTitle type: ContentTitle - name: EventDate type: DATE - name: EventType type: STRING - name: RatingValue type: STRING - name: RecommendationAlgorithm type: RecommendationAlgorithm - name: UserProfile type: UserProfile The data source for the [UserProfile] select control should be loaded from the relative URL: "/UserProfileService/userprofile" (HTTP-GET) The data source for the [ContentTitle] select control should be loaded from the relative URL: "/ContentTitleService/contenttitle" (HTTP-GET) The data source for the [RecommendationAlgorithm] select control should be loaded from the relative URL: "/RecommendationAlgorithmService/recommendationalgorithm" (HTTP-GET) An existing RecommendationEvent entity should be loaded from the relative URL: "/UserProfileService/recommendationevent/{id}" (HTTP-GET) If a new RecommendationEvent entity has been created, the new entity should be posted to the relative URL: "/UserProfileService/recommendationevent" (HTTP-POST) If an existing RecommendationEvent entity has been updated, the modified entity should be sent to the relative URL: "/UserProfileService/recommendationevent/{id}" (HTTP-PUT) If an existing RecommendationEvent entity has to be deleted, the following relative URL should be called: "/UserProfileService/recommendationevent/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint