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 IInventoryInfoRepository InventoryInfoRepository { get; } public IInventoryBatchRepository InventoryBatchRepository { get; } public StockRepository(IStockInfoDetailRepository stockInfoDetailRepository, IStockInfoRepository stockInfoRepository, IInventoryInfoRepository inventoryInfoRepository, IInventoryBatchRepository inventoryBatchRepository) { StockInfoDetailRepository = stockInfoDetailRepository; StockInfoRepository = stockInfoRepository; InventoryInfoRepository = inventoryInfoRepository; InventoryBatchRepository = inventoryBatchRepository; } } }