1
dengjunjie
2025-09-29 d9c99e0480b4910cdb134778dd5c314b35ec4cf2
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs
@@ -13,10 +13,16 @@
        public IStockInfoService StockInfoService { get; }
        public StockSerivce(IStockInfoDetailService stockInfoDetailService, IStockInfoService stockInfoService)
        public IInventoryInfoService InventoryInfoService { get; }
        public IInventoryBatchService InventoryBatchService { get; }
        public StockSerivce(IStockInfoDetailService stockInfoDetailService, IStockInfoService stockInfoService, IInventoryInfoService inventoryInfoService, IInventoryBatchService inventoryBatchService)
        {
            StockInfoDetailService = stockInfoDetailService;
            StockInfoService = stockInfoService;
            InventoryInfoService = inventoryInfoService;
            InventoryBatchService = inventoryBatchService;
        }
    }
}