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.
17 lines
562 B
C#
17 lines
562 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Myshipping.Application.Service.ExpressDelivery.Dto;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public interface IExpressDeliveryService
|
|
{
|
|
Task<object> AddStatus(SFAddOrderStatus orderStatus);
|
|
Task Delete(string Ids);
|
|
Task<dynamic> Get(long Id);
|
|
Task<dynamic> Page([FromQuery] ExpressDeliveryInput input);
|
|
Task<dynamic> QueryKDSchedule(long Id);
|
|
Task<dynamic> Save(ExpressDeliveryDto input);
|
|
Task<dynamic> SendBooking(long Id);
|
|
}
|
|
} |