Scrapping running hadless or viewable

This commit is contained in:
2021-01-17 23:10:07 +01:00
parent fb86fd60cc
commit 2dd9eae9c3
8 changed files with 301 additions and 2 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();
}
}