mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
14 lines
No EOL
372 B
C#
14 lines
No EOL
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();
|
|
}
|
|
}
|
|
} |