Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProductCategoryView
Please create a React-JS view called "ProductCategoryView" for the fields of the ProductCategory entity. The ProductCategoryView must contain the following fields: - name: Category type: Category - name: IsPrimary type: BOOL - name: Product type: Product The data source for the [Category] select control should be loaded from the relative URL: "/CategoryService/category" (HTTP-GET) The data source for the [Product] select control should be loaded from the relative URL: "/ProductService/product" (HTTP-GET) An existing ProductCategory entity should be loaded from the relative URL: "/CategoryService/productcategory/{id}" (HTTP-GET) If a new ProductCategory entity has been created, the new entity should be posted to the relative URL: "/CategoryService/productcategory" (HTTP-POST) If an existing ProductCategory entity has been updated, the modified entity should be sent to the relative URL: "/CategoryService/productcategory/{id}" (HTTP-PUT) If an existing ProductCategory entity has to be deleted, the following relative URL should be called: "/CategoryService/productcategory/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint