Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
CompanyView
Please create a React-JS view called "CompanyView" for the fields of the Company entity. The CompanyView must contain the following fields: - name: Email type: STRING - name: CompanyName type: STRING - name: CompanyInfo type: STRING - name: InternetAddress type: STRING - name: PostalCode type: STRING - name: City type: STRING - name: Street type: STRING - name: PhoneNo type: STRING An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following InsuranceCompany columns: - column: Company - column: PrivateInsurance The table should have the title "InsuranceCompanys" und the data must be loaded from the server with the following relative URL: "/CompanyService/insurancecompany/company/{id}" Add a HTML table to the view with the following VitaEntry columns: - column: School - column: Student - column: Nursery - column: Company - column: FromDate - column: ToDate - column: Details The table should have the title "VitaEntrys" und the data must be loaded from the server with the following relative URL: "/NurseryService/vitaentry/company/{id}" Add a HTML table to the view with the following Repair columns: - column: Company - column: RepairDate The table should have the title "Repairs" und the data must be loaded from the server with the following relative URL: "/CompanyService/repair/company/{id}" Add a HTML table to the view with the following HealthInsurance columns: - column: InsuranceNumber - column: InsuranceCompany The table should have the title "HealthInsurances" und the data must be loaded from the server with the following relative URL: "/CompanyService/healthinsurance/insurancecompany/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum