ARA-Trans / iAM

iAM - Infrastructure Asset Management
GNU Affero General Public License v3.0
4 stars 4 forks source link

Scenario - Investment Editor Data API #66

Closed rbyrne2 closed 5 years ago

rbyrne2 commented 5 years ago

Get general list data like Benefit Attribute types (all attributes done from earlier, this may be the same but with a filter), optimization types for pull down, budget types for pull down,

Backend for apply button where it sends the dialog entries to the DB.

from Paul: export interface InvestmentStrategy { id: number; name: string; }

export interface InvesetmentStrategyDetail { investmentStrategyId: number; inflationRate: number; discountRate: number; year: number; budgets: InvestmentStrategyBudget[]; description: string; }

export interface InvestmentStrategyBudget { name: string; amount: number; }

rbyrne2 commented 5 years ago

SP-5