Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
NutzerView
Please create a React-JS view called "NutzerView" for the fields of the Nutzer entity. The NutzerView must contain the following fields: - name: Email type: STRING - name: FuehrerscheinLand type: Land - name: FuehrerscheinNummer type: STRING - name: Geburtsdatum type: DATE - name: MitgliedSeit type: DATE - name: Nachname type: STRING - name: Status type: STRING - name: Telefonnummer type: STRING - name: Vorname type: STRING The data source for the [FuehrerscheinLand] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Nutzer entity should be loaded from the relative URL: "/LandService/nutzer/{id}" (HTTP-GET) If a new Nutzer entity has been created, the new entity should be posted to the relative URL: "/LandService/nutzer" (HTTP-POST) If an existing Nutzer entity has been updated, the modified entity should be sent to the relative URL: "/LandService/nutzer/{id}" (HTTP-PUT) If an existing Nutzer entity has to be deleted, the following relative URL should be called: "/LandService/nutzer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Zahlungsmethode columns: - column: Nutzer - column: Anbieter - column: MaskiertesKonto - column: Standard - column: Methode - column: Ablaufdatum The table should have the title "Zahlungsmethodes" und the data must be loaded from the server with the following relative URL: "/LandService/zahlungsmethode/nutzer/{id}" Add a HTML table to the view with the following Rechnung columns: - column: Nutzer - column: CarsharingOrganisation - column: ZeitraumEnde - column: Status - column: Gesamtbetrag - column: ZeitraumStart - column: Rechnungsnummer - column: AusgestelltAm The table should have the title "Rechnungs" und the data must be loaded from the server with the following relative URL: "/RechnungService/rechnung/nutzer/{id}" Add a HTML table to the view with the following Mitgliedschaft columns: - column: Mitgliedsnummer - column: CarsharingOrganisation - column: GastgeberAdresse - column: Nutzer - column: Enddatum - column: Startdatum - column: Gastgeber The table should have the title "Mitgliedschafts" und the data must be loaded from the server with the following relative URL: "/StationService/mitgliedschaft/nutzer/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum