public FundHistory GetFundHistory(StockSymbol symbol, DateTime startDate, DateTime endDate) { return(GetFundHistory(symbol.Name(), startDate, endDate)); }
public FundData GetFund(StockSymbol symbol) { return(GetFund(symbol.Name())); }
public async Task <FundHistory> GetFundHistoryAsync(StockSymbol symbol, DateTime startDate, DateTime endDate) { return(await GetFundHistoryAsync(symbol.Name(), startDate, endDate)); }
public async Task <FundData> GetFundAsync(StockSymbol symbol) { return(await GetFundAsync(symbol.Name())); }