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: DelistingDate type: DATE - name: Exchange type: STRING - name: IndexName type: STRING - name: ListingDate type: DATE - name: ListingType 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) An existing StockListing entity should be loaded from the relative URL: "/ProtocolService/stocklisting/{id}" (HTTP-GET) If a new StockListing entity has been created, the new entity should be posted to the relative URL: "/ProtocolService/stocklisting" (HTTP-POST) If an existing StockListing entity has been updated, the modified entity should be sent to the relative URL: "/ProtocolService/stocklisting/{id}" (HTTP-PUT) If an existing StockListing entity has to be deleted, the following relative URL should be called: "/ProtocolService/stocklisting/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint