using DataDomain; namespace StockDAL.Interface { public interface IStockScrapePage { List GetMyStockStatus(string listText); List SearchStockAndCollect(string stockName); void GetStocksPerList(string listText); void PerformClickOnSpecialValue(string name, string operation); } }