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