dengjunjie
2025-09-29 182a80ed28bc67dc2af6709a305430b99a7a87ac
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_StockRepository/StockRepository.cs
@@ -13,10 +13,16 @@
        public IStockInfoRepository StockInfoRepository { get; }
        public StockRepository(IStockInfoDetailRepository stockInfoDetailRepository, IStockInfoRepository stockInfoRepository)
       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;
        }
    }
}