Overview
Summary
Contact
Donate
Imprint
Prompt for the
CustomerView
Please create a React-JS view called "CustomerView" for the fields of the Customer entity. The CustomerView must contain the following fields: - name: Country type: STRING - name: CustomerType type: STRING - name: EstimatedCount type: INT - name: Region type: STRING - name: StartDate type: DATE An existing Customer entity should be loaded from the relative URL: "/UserTerminalService/customer/{id}" (HTTP-GET) If a new Customer entity has been created, the new entity should be posted to the relative URL: "/UserTerminalService/customer" (HTTP-POST) If an existing Customer entity has been updated, the modified entity should be sent to the relative URL: "/UserTerminalService/customer/{id}" (HTTP-PUT) If an existing Customer entity has to be deleted, the following relative URL should be called: "/UserTerminalService/customer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CustomerUserTerminal columns: - column: Customer - column: UserTerminal The table should have the title "CustomerUserTerminals" und the data must be loaded from the server with the following relative URL: "/UserTerminalService/customeruserterminal/customer/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint