using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Common.StockEnum; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_Core.Enums; using WIDESEAWCS_IOutboundRepository; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_IOutboundService { public interface IOutStockLockInfoService : IService { IOutStockLockInfoRepository Repository { get; } List GetOutStockLockInfos(Dt_OutboundOrder outboundOrder, Dt_OutboundOrderDetail outboundOrderDetail, List outStocks, int? taskNum = null); List GetByOrderDetailId(int orderDetailId); List GetByOrderDetailId(int orderDetailId, OutStockStatus outStockStatus); } }