mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
11 lines
No EOL
294 B
C#
11 lines
No EOL
294 B
C#
using System.Collections.Generic;
|
|
using MonoStockPortfolio.Entities;
|
|
|
|
namespace MonoStockPortfolio.Core.Config
|
|
{
|
|
public interface IConfigRepository
|
|
{
|
|
IEnumerable<StockDataItem> GetStockItems();
|
|
void UpdateStockItems(List<StockDataItem> stockDataItems);
|
|
}
|
|
} |