Status page can be shown , a lot of refactoring is still required

This commit is contained in:
2022-02-03 23:03:04 +01:00
parent b776847980
commit 8b74067a10
8 changed files with 175 additions and 13 deletions

View File

@ -0,0 +1,12 @@
using DataDomain;
namespace StockDAL.Interface
{
public interface IStockScrapePage
{
List<DiTraderStockRow> GetMyStockStatus(string listText);
void GetStocksPerList(string listText);
void PerformClickOnSpecialValue(string name, string operation);
}
}