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: Region The data source for the [Region] select control should be loaded from the relative URL: "/RegionService/region" (HTTP-GET) An existing Country entity should be loaded from the relative URL: "/CountryService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/CountryService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/CountryService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RegulatoryLicense columns: - column: AuthorityName - column: Region - column: Status - column: LicenseType - column: IssuedAt - column: Country - column: LicenseNumber - column: ExpiresAt The table should have the title "RegulatoryLicenses" und the data must be loaded from the server with the following relative URL: "/RegionService/regulatorylicense/country/{id}" Add a HTML table to the view with the following UserAddress columns: - column: Line1 - column: State - column: Line2 - column: PostalCode - column: UserAccount - column: IsPrimary - column: City - column: AddressType - column: Country The table should have the title "UserAddresss" und the data must be loaded from the server with the following relative URL: "/CountryService/useraddress/country/{id}" Add a HTML table to the view with the following MerchantAddress columns: - column: PostalCode - column: State - column: AddressType - column: Merchant - column: City - column: Line2 - column: Line1 - column: Country The table should have the title "MerchantAddresss" und the data must be loaded from the server with the following relative URL: "/MerchantService/merchantaddress/country/{id}" Add a HTML table to the view with the following PaymentCard columns: - column: VerifiedAt - column: ExpiryMonth - column: CardNetwork - column: FundingSource - column: Country - column: ExpiryYear - column: CardholderName - column: Last4 The table should have the title "PaymentCards" und the data must be loaded from the server with the following relative URL: "/FundingSourceService/paymentcard/country/{id}" Add a HTML table to the view with the following SanctionListEntry columns: - column: ExternalReference - column: Active - column: Country - column: FullName - column: ListName - column: DateOfBirth The table should have the title "SanctionListEntrys" und the data must be loaded from the server with the following relative URL: "/CountryService/sanctionlistentry/country/{id}" Add a HTML table to the view with the following BankAccount columns: - column: FundingSource - column: BankName - column: AccountNumberMasked - column: Bic - column: Country - column: VerifiedAt - column: Iban The table should have the title "BankAccounts" und the data must be loaded from the server with the following relative URL: "/CountryService/bankaccount/country/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint