Files
StockInfoCoreApp/StockDal.Interface/IStockMarketRepository.cs
Tommy Öman 3b0809c48d Cleared app from old code, by commenting out
Will do another commit when all comments are taken away
2022-02-21 17:16:57 +01:00

24 lines
706 B
C#

using DataDomain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StockDal.Interface
{
public interface IStockMarketRepository
{
List<DiTraderStockRow> DumpObjects { get; set; }
DiTraderStockRow SaveRow { get; set; }
Dictionary<string, DiTraderStockRow> StockMarketList { get; set; }
StringBuilder TextResults { get; set; }
void Clean();
void LoadStockMarketList(int persId);
//void LoadStockMarketList(int persId, bool viewBrowser);
void RefreshMarketList(int persId);
DiTraderStockRow LoadStockMarketStockData(string searchedStock);
}
}