public RateOfReturnService(ITradeDateRepository tradeDateRepository,
                            IAccountMarketValueRepository marketValueRepository, IAccountCashFlowsRepository cashFlowRepository)
 {
     this.tradeDateRepository   = tradeDateRepository;
     this.marketValueRepository = marketValueRepository;
     this.cashFlowRepository    = cashFlowRepository;
 }
コード例 #2
0
 public AccountHistoryController(ITradeDateRepository tradeDateRepository, IAccountMarketValueRepository marketValueRepository)
 {
     this.tradeDateRepository   = tradeDateRepository;
     this.marketValueRepository = marketValueRepository;
 }