Overview
Summary
Contact
Donate
Imprint
Prompt for the
LanguageView
Please create a React-JS view called "LanguageView" for the fields of the Language entity. The LanguageView must contain the following fields: - name: Code type: STRING - name: IsActive type: BOOL - name: Name type: STRING An existing Language entity should be loaded from the relative URL: "/LanguageService/language/{id}" (HTTP-GET) If a new Language entity has been created, the new entity should be posted to the relative URL: "/LanguageService/language" (HTTP-POST) If an existing Language entity has been updated, the modified entity should be sent to the relative URL: "/LanguageService/language/{id}" (HTTP-PUT) If an existing Language entity has to be deleted, the following relative URL should be called: "/LanguageService/language/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Review columns: - column: Attraction - column: Text - column: UserAccount - column: Property - column: Booking - column: Language - column: OverallScore - column: AirportTransferProduct - column: CarRentalProduct - column: IsPublic - column: Title - column: CreatedAt The table should have the title "Reviews" und the data must be loaded from the server with the following relative URL: "/LanguageService/review/language/{id}" Add a HTML table to the view with the following UserAccount columns: - column: DefaultCurrency - column: Email - column: CreatedAt - column: PhoneNumber - column: DefaultLanguage - column: PasswordHash - column: IsActive - column: FullName The table should have the title "UserAccounts" und the data must be loaded from the server with the following relative URL: "/UserAccountService/useraccount/defaultlanguage/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint