using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_IStockRepository; namespace WIDESEAWCS_StockRepository { public class StockRepository : IStockRepository { public IStockInfoDetailRepository StockInfoDetailRepository { get; } public IStockInfoRepository StockInfoRepository { get; } public StockRepository(IStockInfoDetailRepository stockInfoDetailRepository, IStockInfoRepository stockInfoRepository) { StockInfoDetailRepository = stockInfoDetailRepository; StockInfoRepository = stockInfoRepository; } } }