using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_DTO; using WIDESEA_DTO.Inbound; using WIDESEA_Model.Models; namespace WIDESEA_IInboundService { public interface IInboundOrderService : IService { IRepository Repository { get; } Task ReceiveInboundOrder(List models, int operateType); WebResponseContent BarcodeMaterielGroup(BarcodeMaterielGroupDTO materielGroupDTO); WebResponseContent EmptyMaterielGroup(EmptyBarcodeMaterielGroupDTO materielGroupDTO); WebResponseContent UnPalletQuantity(string orderNo); WebResponseContent UndoPalletGroup(string palletCode , string barcode = ""); WebResponseContent UnPalletGroupBarcode(string orderNo); } }