Overview
Summary
Contact
Donate
Imprint
Prompt for the
RecommendationAlgorithmView
Please create a React-JS view called "RecommendationAlgorithmView" for the fields of the RecommendationAlgorithm entity. The RecommendationAlgorithmView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: IntroducedDate type: DATE - name: Name type: STRING - name: RetiredDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing RecommendationAlgorithm entity should be loaded from the relative URL: "/RecommendationAlgorithmService/recommendationalgorithm/{id}" (HTTP-GET) If a new RecommendationAlgorithm entity has been created, the new entity should be posted to the relative URL: "/RecommendationAlgorithmService/recommendationalgorithm" (HTTP-POST) If an existing RecommendationAlgorithm entity has been updated, the modified entity should be sent to the relative URL: "/RecommendationAlgorithmService/recommendationalgorithm/{id}" (HTTP-PUT) If an existing RecommendationAlgorithm entity has to be deleted, the following relative URL should be called: "/RecommendationAlgorithmService/recommendationalgorithm/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RecommendationEvent columns: - column: RatingValue - column: EventType - column: EventDate - column: UserProfile - column: ContentTitle - column: RecommendationAlgorithm The table should have the title "RecommendationEvents" und the data must be loaded from the server with the following relative URL: "/UserProfileService/recommendationevent/recommendationalgorithm/{id}" Add a HTML table to the view with the following PrizeCompetition columns: - column: StartDate - column: PrizeAmount - column: Name - column: Description - column: Currency - column: RecommendationAlgorithm - column: EndDate The table should have the title "PrizeCompetitions" und the data must be loaded from the server with the following relative URL: "/RecommendationAlgorithmService/prizecompetition/recommendationalgorithm/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint