mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-28 19:29:19 +00:00
11 lines
No EOL
302 B
C#
11 lines
No EOL
302 B
C#
using System.Collections.Generic;
|
|
using MonoStockPortfolio.Entities;
|
|
|
|
namespace MonoStockPortfolio.Core.StockData
|
|
{
|
|
public interface IStockDataProvider
|
|
{
|
|
IEnumerable<StockQuote> GetStockQuotes(IEnumerable<string> enumerable);
|
|
bool IsValidTicker(string ticker);
|
|
}
|
|
} |