Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserLanguageView
Please create a React-JS view called "UserLanguageView" for the fields of the UserLanguage entity. The UserLanguageView must contain the following fields: - name: IsPrimary type: BOOL - name: Language type: Language - name: ProficiencyLevel type: STRING - name: User type: UserAccount The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Language] select control should be loaded from the relative URL: "/LanguageService/language" (HTTP-GET) An existing UserLanguage entity should be loaded from the relative URL: "/LanguageService/userlanguage/{id}" (HTTP-GET) If a new UserLanguage entity has been created, the new entity should be posted to the relative URL: "/LanguageService/userlanguage" (HTTP-POST) If an existing UserLanguage entity has been updated, the modified entity should be sent to the relative URL: "/LanguageService/userlanguage/{id}" (HTTP-PUT) If an existing UserLanguage entity has to be deleted, the following relative URL should be called: "/LanguageService/userlanguage/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint