Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
CustomerAddressView
Please create a React-JS view called "CustomerAddressView" for the fields of the CustomerAddress entity. The CustomerAddressView must contain the following fields: - name: City type: STRING - name: Country type: STRING - name: Customer type: Customer - name: IsPrimary type: BOOL - name: Label type: STRING - name: PostalCode type: STRING - name: Street type: STRING The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) An existing CustomerAddress entity should be loaded from the relative URL: "/CustomerService/customeraddress/{id}" (HTTP-GET) If a new CustomerAddress entity has been created, the new entity should be posted to the relative URL: "/CustomerService/customeraddress" (HTTP-POST) If an existing CustomerAddress entity has been updated, the modified entity should be sent to the relative URL: "/CustomerService/customeraddress/{id}" (HTTP-PUT) If an existing CustomerAddress entity has to be deleted, the following relative URL should be called: "/CustomerService/customeraddress/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum