Overview
Summary
Contact
Donate
Imprint
Prompt for the
FeeScheduleView
Please create a React-JS view called "FeeScheduleView" for the fields of the FeeSchedule entity. The FeeScheduleView must contain the following fields: - name: Currency type: Currency - name: Description type: STRING - name: EffectiveFrom type: DATE - name: EffectiveTo type: DATE - name: FixedFeeAmount type: DOUBLE - name: MaximumFeeAmount type: DOUBLE - name: MinimumFeeAmount type: DOUBLE - name: Name type: STRING - name: PercentageFee type: DOUBLE The data source for the [Currency] select control should be loaded from the relative URL: "/CurrencyService/currency" (HTTP-GET) An existing FeeSchedule entity should be loaded from the relative URL: "/CurrencyService/feeschedule/{id}" (HTTP-GET) If a new FeeSchedule entity has been created, the new entity should be posted to the relative URL: "/CurrencyService/feeschedule" (HTTP-POST) If an existing FeeSchedule entity has been updated, the modified entity should be sent to the relative URL: "/CurrencyService/feeschedule/{id}" (HTTP-PUT) If an existing FeeSchedule entity has to be deleted, the following relative URL should be called: "/CurrencyService/feeschedule/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Fee columns: - column: Type - column: Currency - column: FeeSchedule - column: Description - column: Amount The table should have the title "Fees" und the data must be loaded from the server with the following relative URL: "/CurrencyService/fee/feeschedule/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint