Overview
Summary
Contact
Donate
Imprint
Prompt for the
BrandView
Please create a React-JS view called "BrandView" for the fields of the Brand entity. The BrandView must contain the following fields: - name: CreatedAt type: DATE - name: Name type: STRING - name: UpdatedAt type: DATE An existing Brand entity should be loaded from the relative URL: "/ProductService/brand/{id}" (HTTP-GET) If a new Brand entity has been created, the new entity should be posted to the relative URL: "/ProductService/brand" (HTTP-POST) If an existing Brand entity has been updated, the modified entity should be sent to the relative URL: "/ProductService/brand/{id}" (HTTP-PUT) If an existing Brand entity has to be deleted, the following relative URL should be called: "/ProductService/brand/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Product columns: - column: Brand - column: Title - column: Description - column: UpdatedAt - column: CreatedAt - column: IsActive - column: Sku The table should have the title "Products" und the data must be loaded from the server with the following relative URL: "/ProductService/product/brand/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint