Overview
Summary
Contact
Donate
Imprint
Prompt for the
CarCategoryView
Please create a React-JS view called "CarCategoryView" for the fields of the CarCategory entity. The CarCategoryView must contain the following fields: - name: Code type: STRING - name: Description type: STRING - name: Name type: STRING An existing CarCategory entity should be loaded from the relative URL: "/CarCategoryService/carcategory/{id}" (HTTP-GET) If a new CarCategory entity has been created, the new entity should be posted to the relative URL: "/CarCategoryService/carcategory" (HTTP-POST) If an existing CarCategory entity has been updated, the modified entity should be sent to the relative URL: "/CarCategoryService/carcategory/{id}" (HTTP-PUT) If an existing CarCategory entity has to be deleted, the following relative URL should be called: "/CarCategoryService/carcategory/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CarRentalProduct columns: - column: CarRentalLocation - column: AirConditioning - column: Description - column: Transmission - column: Doors - column: Seats - column: Name - column: CarCategory The table should have the title "CarRentalProducts" und the data must be loaded from the server with the following relative URL: "/CarCategoryService/carrentalproduct/carcategory/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint