You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
838 B
C#
22 lines
838 B
C#
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<ExpressDeliveryDto> Get(long Id);
|
|
Task<SqlSugarPagedList<ExpressDeliveryDto>> Page([FromQuery] ExpressDeliveryInput input);
|
|
//Task<dynamic> QueryKDSchedule(long Id);
|
|
Task<ExpressDeliveryDto> Save(ExpressDeliveryDto input);
|
|
Task<dynamic> SendBooking(ExpressDeliveryOrder order);
|
|
Task DeleteAddress(string ids);
|
|
Task<List<ExpressDeliveryAddressDto>> GetAddressList();
|
|
Task SaveOrUpdateAddress(ExpressDeliveryAddressDto input);
|
|
Task Delete(string Ids);
|
|
}
|
|
} |