Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VersicherungView
Please create a React-JS view called "VersicherungView" for the fields of the Versicherung entity. The VersicherungView must contain the following fields: - name: Hausnummer type: STRING - name: KontaktEMail type: STRING - name: KontaktTelefon type: STRING - name: Land type: STRING - name: Name type: STRING - name: Notizen type: STRING - name: NummernFormat type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING An existing Versicherung entity should be loaded from the relative URL: "/PatientService/versicherung/{id}" (HTTP-GET) If a new Versicherung entity has been created, the new entity should be posted to the relative URL: "/PatientService/versicherung" (HTTP-POST) If an existing Versicherung entity has been updated, the modified entity should be sent to the relative URL: "/PatientService/versicherung/{id}" (HTTP-PUT) If an existing Versicherung entity has to be deleted, the following relative URL should be called: "/PatientService/versicherung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Rechnung columns: - column: GesamtBrutto - column: Notizen - column: RechnungsDatum - column: ErstelltAm - column: Patient - column: GesamtNetto - column: Status - column: RechnungsNummer - column: FaelligAm - column: SteuerBetrag - column: Versicherung The table should have the title "Rechnungs" und the data must be loaded from the server with the following relative URL: "/RechnungService/rechnung/versicherung/{id}" Add a HTML table to the view with the following Patient columns: - column: Geburtsdatum - column: Nachname - column: Hausnummer - column: Notizen - column: Vorname - column: Land - column: Telefonnummer - column: ErstelltAm - column: Mobilnummer - column: Ort - column: Versicherung - column: PatientenNummer - column: Geschlecht - column: IstAktiv - column: Strasse - column: Postleitzahl - column: EMail - column: BevorzugteSprache The table should have the title "Patients" und the data must be loaded from the server with the following relative URL: "/PatientService/patient/versicherung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum