1
dengjunjie
2025-09-29 d9c99e0480b4910cdb134778dd5c314b35ec4cf2
项目代码/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;
        }
    }
}