using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_DTO.Inbound; using WIDESEA_Model.Models; namespace WIDESEA_IInboundService { public interface ITakeStockOrderService : IService { WebResponseContent ValidateBoxNo(string orderNo, string boxNo); WebResponseContent ValidateBarcode(string boxNo, string barcode); WebResponseContent CompleteStockTake([FromBody] CompleteStockTakeDTO completeStockTakeDTO); WebResponseContent ReturnBox(string orderNo, string boxNo, string sourceAddress); WebResponseContent ManualReconciliation(int id); WebResponseContent SelectOrder(string remark, int id); WebResponseContent DocumentReconciliation(int orderId, int id); } }