| | |
| | | |
| | | 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; |
| | | } |
| | | } |
| | | } |