Overview
Summary
Contact
Donate
Imprint
Prompt for the
CountryView
Please create a React-JS view called "CountryView" for the fields of the Country entity. The CountryView must contain the following fields: - name: IsoCode2 type: STRING - name: IsoCode3 type: STRING - name: Name type: STRING - name: Region type: STRING - name: Subregion type: STRING An existing Country entity should be loaded from the relative URL: "/TitleService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/TitleService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/TitleService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/TitleService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TerritoryAvailability columns: - column: Country - column: AvailableTo - column: Notes - column: AvailableFrom - column: Service The table should have the title "TerritoryAvailabilitys" und the data must be loaded from the server with the following relative URL: "/ServiceService/territoryavailability/country/{id}" Add a HTML table to the view with the following PaymentMethod columns: - column: User - column: ExpiryMonth - column: IsDefault - column: Provider - column: BillingCountry - column: ExpiryYear - column: LastFour - column: Type - column: CreatedAt The table should have the title "PaymentMethods" und the data must be loaded from the server with the following relative URL: "/UserService/paymentmethod/billingcountry/{id}" Add a HTML table to the view with the following SportsEvent columns: - column: Country - column: Name - column: EventDate - column: Venue - column: Title - column: CompetitionName - column: SportType The table should have the title "SportsEvents" und the data must be loaded from the server with the following relative URL: "/ChannelService/sportsevent/country/{id}" Add a HTML table to the view with the following ContentAvailability columns: - column: Title - column: Country - column: AvailableTo - column: Notes - column: AvailableFrom - column: IsTransactional - column: IsIncludedWithSubscription The table should have the title "ContentAvailabilitys" und the data must be loaded from the server with the following relative URL: "/CompanyService/contentavailability/country/{id}" Add a HTML table to the view with the following Title columns: - column: ExternalReference - column: ProductionCountry - column: Name - column: OriginalName - column: RuntimeMinutes - column: ReleaseDate - column: ImdbId - column: OriginalLanguage - column: Synopsis - column: IsOriginalProduction - column: Type The table should have the title "Titles" und the data must be loaded from the server with the following relative URL: "/TitleService/title/productioncountry/{id}" Add a HTML table to the view with the following ProductionCompany columns: - column: Website - column: Name - column: Country - column: Description The table should have the title "ProductionCompanys" und the data must be loaded from the server with the following relative URL: "/ProductionCompanyService/productioncompany/country/{id}" Add a HTML table to the view with the following RatingSystem columns: - column: Description - column: Name - column: Country The table should have the title "RatingSystems" und the data must be loaded from the server with the following relative URL: "/ProductionCompanyService/ratingsystem/country/{id}" Add a HTML table to the view with the following User columns: - column: DisplayName - column: Status - column: Country - column: PasswordHash - column: CreatedAt - column: Email The table should have the title "Users" und the data must be loaded from the server with the following relative URL: "/UserService/user/country/{id}" Add a HTML table to the view with the following Person columns: - column: BirthDate - column: Name - column: Biography - column: BirthCountry The table should have the title "Persons" und the data must be loaded from the server with the following relative URL: "/PersonService/person/birthcountry/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint