14 lines
364 B
C#
14 lines
364 B
C#
using DataDomain;
|
|
|
|
namespace StockDAL.Interface
|
|
{
|
|
public interface IStockScrapePage
|
|
{
|
|
List<DiTraderStockRow> GetMyStockStatus(string listText);
|
|
List<DiTraderStockRow> SearchStockAndCollect(string stockName);
|
|
void GetStocksPerList(string listText);
|
|
void PerformClickOnSpecialValue(string name, string operation);
|
|
}
|
|
|
|
}
|