dengjunjie
2 天以前 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922
项目代码/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;
        }
    }
}