using Microsoft.AspNetCore.Mvc; using Myshipping.Application.Entity; using Myshipping.Application.Service.ExpressDelivery.Dto; using Myshipping.Core; 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(ExpressDeliveryOrder order); Task DeleteAddress(string ids); Task> GetAddressList(); Task SaveOrUpdateAddress(ExpressDeliveryAddressDto input); Task Delete(string Ids); } }