Overview
Summary
Contact
Donate
Imprint
Prompt for the
StockListingView
Please create a React-JS view called "StockListingView" for the fields of the StockListing entity. The StockListingView must contain the following fields: - name: Company type: Company - name: Exchange type: STRING - name: Isin type: STRING - name: ListingDate type: Listing - name: Segment type: STRING - name: Ticker type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [ListingDate] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) An existing StockListing entity should be loaded from the relative URL: "/CompanyService/stocklisting/{id}" (HTTP-GET) If a new StockListing entity has been created, the new entity should be posted to the relative URL: "/CompanyService/stocklisting" (HTTP-POST) If an existing StockListing entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/stocklisting/{id}" (HTTP-PUT) If an existing StockListing entity has to be deleted, the following relative URL should be called: "/CompanyService/stocklisting/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint