Scrapping running hadless or viewable
This commit is contained in:
20
StockDal.Interface/IStockMarketRepository.cs
Normal file
20
StockDal.Interface/IStockMarketRepository.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
@ -6,6 +6,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Dapper" Version="2.0.78" />
|
||||
<PackageReference Include="HtmlAgilityPack" Version="1.11.29" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user