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.
BookingHeChuan/Myshipping.Application/Service/ExpressDelivery/IExpressDeliveryService.cs

22 lines
840 B
C#

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<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);
Task<object> AddSfStatus(SFAddOrderStatus orderStatus);
Task DeleteAddress(string ids);
Task<List<ExpressDeliveryAddressDto>> GetAddressList();
Task SaveOrUpdateAddress(ExpressDeliveryAddressDto input);
Task Delete(string Ids);
//IActionResult PrintWaybill(string accessToken, int orderId);
}
}