Overview
Summary
Contact
Donate
Imprint
Prompt for the
InstitutionalInvestorView
Please create a React-JS view called "InstitutionalInvestorView" for the fields of the InstitutionalInvestor entity. The InstitutionalInvestorView must contain the following fields: - name: BaseCurrency type: STRING - name: InvestorType type: STRING - name: Name type: STRING - name: Organization type: Organization - name: TotalAssets type: STRING The data source for the [Organization] select control should be loaded from the relative URL: "/OrganizationService/organization" (HTTP-GET) An existing InstitutionalInvestor entity should be loaded from the relative URL: "/OrganizationService/institutionalinvestor/{id}" (HTTP-GET) If a new InstitutionalInvestor entity has been created, the new entity should be posted to the relative URL: "/OrganizationService/institutionalinvestor" (HTTP-POST) If an existing InstitutionalInvestor entity has been updated, the modified entity should be sent to the relative URL: "/OrganizationService/institutionalinvestor/{id}" (HTTP-PUT) If an existing InstitutionalInvestor entity has to be deleted, the following relative URL should be called: "/OrganizationService/institutionalinvestor/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Portfolio columns: - column: InstitutionalInvestor - column: Name - column: Description - column: ManagedByOrganization - column: AladdinSystem - column: BaseCurrency - column: TotalValue The table should have the title "Portfolios" und the data must be loaded from the server with the following relative URL: "/OrganizationService/portfolio/institutionalinvestor/{id}" Add a HTML table to the view with the following AladdinCustomer columns: - column: AladdinSystem - column: InstitutionalInvestor - column: Notes - column: EndDate - column: StartDate - column: UsageScope The table should have the title "AladdinCustomers" und the data must be loaded from the server with the following relative URL: "/AladdinSystemService/aladdincustomer/institutionalinvestor/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint