| | |
| | | using System.Drawing.Printing; |
| | | using System.Linq.Expressions; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_IRecordService; |
| | | |
| | | namespace WIDESEA_StorageBasicService; |
| | | |
| | | public class VV_StockInfoService : ServiceBase<VV_StockInfo, IVV_StockInfoRepository>, IVV_StockInfoService |
| | | { |
| | | private readonly IDt_PalletStockInfoRepository _repository; |
| | | public VV_StockInfoService(IVV_StockInfoRepository BaseDal, IDt_PalletStockInfoRepository repository) : base(BaseDal) |
| | | private readonly IStockQuantityChangeRecordService _stockQuantityChangeRecord; |
| | | public VV_StockInfoService(IVV_StockInfoRepository BaseDal, IDt_PalletStockInfoRepository repository, IStockQuantityChangeRecordService stockQuantityChangeRecord) : base(BaseDal) |
| | | { |
| | | _repository = repository; |
| | | _stockQuantityChangeRecord = stockQuantityChangeRecord; |
| | | } |
| | | |
| | | public WebResponseContent stockLock(object[] keys) |