using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.BookingOrder
{
//
/// 马士基API SPOT 订舱
///
public interface IBookingMSKSPOTAPIService
{
///
/// 检索始发地、目的港口信息
///
/// 请求详情
/// 返回检索结果
Task> SearchLocations(QuerySPOTLocationsDto model);
///
/// 检索海运船期详情
///
/// 请求船期详情
/// 返回船期结果
Task> SearchShipSailingSchedule(QueryMSKSPOTShipSailingScheduleDto model);
}
}