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