using Microsoft.AspNetCore.Mvc; using Myshipping.Application.Service.ExpressDelivery.Dto; using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Application { public interface IExpressDeliveryService { Task Get(long Id); Task Page([FromQuery] ExpressDeliveryInput input); Task QueryKDSchedule(long Id); Task Save(ExpressDeliveryDto input); Task SendBooking(long Id); Task AddSfStatus(SFAddOrderStatus orderStatus); Task DeleteAddress(string ids); Task> GetAddressList(); Task SaveOrUpdateAddress(ExpressDeliveryAddressDto input); Task Delete(string Ids); } }