mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-06 03:00:18 +00:00
14 lines
372 B
C#
14 lines
372 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using MonoStockPortfolio.Entities;
|
||
|
|
||
|
namespace MonoStockPortfolio.Core.StockData
|
||
|
{
|
||
|
public class DummyStockDataProvider : IStockDataProvider
|
||
|
{
|
||
|
public IEnumerable<StockQuote> GetStockQuotes(IEnumerable<string> enumerable)
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|