Add project files.

This commit is contained in:
2021-02-17 19:28:46 +01:00
commit 1f6298551f
22 changed files with 1130 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using StockDomain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StockDal.Interface
{
public interface IStockMarketRepository
{
Dictionary<string, DiTraderStockRow> StockMarketList { get; set; }
bool ViewBrowser { get; set; }
void Clean();
void LoadStockMarketList();
void LoadStockMarketList(bool viewBrowser);
void RefreshMarketList();
}
}