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