using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_Core.Enums; using WIDESEA_DTO.Stock; using WIDESEA_Model.Models; namespace WIDESEA_IOutboundService { public interface IOutboundOrderDetailService : IService { WebResponseContent LockOutboundStock(int orderDetailId); (List, Dt_OutboundOrderDetail, List, List) AssignStockOutbound(int orderDetailId, List stockSelectViews); WebResponseContent LockOutboundStock(int orderDetailId, List stockSelectViews); WebResponseContent LockOutboundStockDataUpdate(List stockInfos, Dt_OutboundOrderDetail outboundOrderDetail, List outStockLockInfos, List locationInfos, LocationStatusEnum locationStatus = LocationStatusEnum.Lock); WebResponseContent RevokeLockOutboundStock(int orderDetailId); } }