using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 起运港未提箱通知服务接口 /// public interface ITaskPOLContainerNotPickUpService { /// /// 获取起运港未提箱通知详情 /// /// 起运港未提箱通知任务主键 /// 返回详情 Task GetInfoByTaskId(string taskPkId); /// /// 自动转发起运港未提箱通知 /// /// 起运港未提箱通知任务主键 /// 返回回执 Task AutoTransferNotice(string taskPKId); /// /// 检索对应的订舱订单 /// /// 起运港未提箱通知任务主键 /// 返回回执 Task QueryBookingOrder(string taskPKId); /// /// 发送邮件通知给客户 /// /// 起运港未提箱通知主键 /// 返回回执 Task SendEmailToCustomer(string taskPKId); } }