Overview
Summary
Contact
Donate
Imprint
Prompt for the
QuoteView
Please create a React-JS view called "QuoteView" for the fields of the Quote entity. The QuoteView must contain the following fields: - name: ContextDescription type: STRING - name: Person type: Person - name: QuoteDate type: DATE - name: QuoteText type: STRING The data source for the [Person] select control should be loaded from the relative URL: "/CompanyService/person" (HTTP-GET) An existing Quote entity should be loaded from the relative URL: "/BatteryPackService/quote/{id}" (HTTP-GET) If a new Quote entity has been created, the new entity should be posted to the relative URL: "/BatteryPackService/quote" (HTTP-POST) If an existing Quote entity has been updated, the modified entity should be sent to the relative URL: "/BatteryPackService/quote/{id}" (HTTP-PUT) If an existing Quote entity has to be deleted, the following relative URL should be called: "/BatteryPackService/quote/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint