15 lines
448 B
C#
15 lines
448 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);
|
|
List<StockGroupModel> GetGroupStocksList(string listText, int startNo = 0);
|
|
}
|
|
|
|
}
|