using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_IStockRepository; namespace WIDESEA_StockRepository { public class StockRepository : IStockRepository { public IStockInfoDetailRepository StockInfoDetailRepository { get; } public IStockInfoRepository StockInfoRepository { get; } public IStockInfoDetail_HtyRepository StockInfoDetail_HtyRepository { get; } public IStockInfo_HtyRepository StockInfo_HtyRepository { get; } public StockRepository(IStockInfoDetailRepository stockInfoDetailRepository, IStockInfoRepository stockInfoRepository, IStockInfoDetail_HtyRepository stockInfoDetail_HtyRepository,IStockInfo_HtyRepository stockInfo_HtyRepository) { StockInfoDetailRepository = stockInfoDetailRepository; StockInfoRepository = stockInfoRepository; StockInfoDetail_HtyRepository = stockInfoDetail_HtyRepository; StockInfo_HtyRepository = stockInfo_HtyRepository; } } }