Overview
Summary
Contact
Donate
Imprint
Prompt for the
DeliveryServiceView
Please create a React-JS view called "DeliveryServiceView" for the fields of the DeliveryService entity. The DeliveryServiceView must contain the following fields: - name: Description type: STRING - name: EndDate type: DATE - name: PartnerCompany type: Company - name: Program type: Program - name: StartDate type: DATE The data source for the [PartnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Program] select control should be loaded from the relative URL: "/ProgramService/program" (HTTP-GET) An existing DeliveryService entity should be loaded from the relative URL: "/ProgramService/deliveryservice/{id}" (HTTP-GET) If a new DeliveryService entity has been created, the new entity should be posted to the relative URL: "/ProgramService/deliveryservice" (HTTP-POST) If an existing DeliveryService entity has been updated, the modified entity should be sent to the relative URL: "/ProgramService/deliveryservice/{id}" (HTTP-PUT) If an existing DeliveryService entity has to be deleted, the following relative URL should be called: "/ProgramService/deliveryservice/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint