Overview
Summary
Contact
Donate
Imprint
Prompt for the
PartnerCompanyView
Please create a React-JS view called "PartnerCompanyView" for the fields of the PartnerCompany entity. The PartnerCompanyView must contain the following fields: - name: Country type: Country - name: Industry type: STRING - name: Name type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing PartnerCompany entity should be loaded from the relative URL: "/PartnerCompanyService/partnercompany/{id}" (HTTP-GET) If a new PartnerCompany entity has been created, the new entity should be posted to the relative URL: "/PartnerCompanyService/partnercompany" (HTTP-POST) If an existing PartnerCompany entity has been updated, the modified entity should be sent to the relative URL: "/PartnerCompanyService/partnercompany/{id}" (HTTP-PUT) If an existing PartnerCompany entity has to be deleted, the following relative URL should be called: "/PartnerCompanyService/partnercompany/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AutoIntegration columns: - column: StartYear - column: IntegrationType - column: ModelName - column: PartnerCompany The table should have the title "AutoIntegrations" und the data must be loaded from the server with the following relative URL: "/PartnerCompanyService/autointegration/partnercompany/{id}" Add a HTML table to the view with the following TelcoPartnership columns: - column: StartDate - column: Country - column: PartnerCompany - column: EndDate - column: Name - column: IncludesZeroRating The table should have the title "TelcoPartnerships" und the data must be loaded from the server with the following relative URL: "/PartnerCompanyService/telcopartnership/partnercompany/{id}" Add a HTML table to the view with the following SmartDeviceIntegration columns: - column: SupportsVoice - column: PartnerCompany - column: DeviceType - column: SupportsSpotifyConnect The table should have the title "SmartDeviceIntegrations" und the data must be loaded from the server with the following relative URL: "/PartnerCompanyService/smartdeviceintegration/partnercompany/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint