예제 #1
0
 public FundHistory GetFundHistory(StockSymbol symbol, DateTime startDate, DateTime endDate)
 {
     return(GetFundHistory(symbol.Name(), startDate, endDate));
 }
예제 #2
0
 public FundData GetFund(StockSymbol symbol)
 {
     return(GetFund(symbol.Name()));
 }
예제 #3
0
 public async Task <FundHistory> GetFundHistoryAsync(StockSymbol symbol, DateTime startDate, DateTime endDate)
 {
     return(await GetFundHistoryAsync(symbol.Name(), startDate, endDate));
 }
예제 #4
0
 public async Task <FundData> GetFundAsync(StockSymbol symbol)
 {
     return(await GetFundAsync(symbol.Name()));
 }