Overview
Summary
Contact
Donate
Imprint
Prompt for the
AcquisitionView
Please create a React-JS view called "AcquisitionView" for the fields of the Acquisition entity. The AcquisitionView must contain the following fields: - name: AcquiredCompany type: LONG - name: AcquiringCompany type: LONG - name: AnnouncementDate type: DATE - name: CloseDate type: DATE - name: Country type: Country - name: DealValueUsd type: DOUBLE - name: Notes type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Acquisition entity should be loaded from the relative URL: "/CountryService/acquisition/{id}" (HTTP-GET) If a new Acquisition entity has been created, the new entity should be posted to the relative URL: "/CountryService/acquisition" (HTTP-POST) If an existing Acquisition entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/acquisition/{id}" (HTTP-PUT) If an existing Acquisition entity has to be deleted, the following relative URL should be called: "/CountryService/acquisition/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint