mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
10 lines
258 B
C#
10 lines
258 B
C#
|
using System.Collections.Generic;
|
||
|
using MonoStockPortfolio.Entities;
|
||
|
|
||
|
namespace MonoStockPortfolio.Core.StockData
|
||
|
{
|
||
|
public interface IStockDataProvider
|
||
|
{
|
||
|
IEnumerable<StockQuote> GetStockQuotes(IEnumerable<string> enumerable);
|
||
|
}
|
||
|
}
|