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.
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public interface IRulesEngineClientService
|
|
{
|
|
/// <summary>
|
|
/// 海运订舱请求规则引擎校验
|
|
/// </summary>
|
|
/// <param name="model">海运订舱请求业务</param>
|
|
/// <returns>返回用户信息</returns>
|
|
Task<RulesEngineExcuteResultDto> ExcuteRulesOceanBookingByMsg(RulesEngineOrderBookingMessageInfo model);
|
|
|
|
|
|
/// <summary>
|
|
/// 海运订舱请求规则引擎校验
|
|
/// </summary>
|
|
/// <param name="bookingId">海运订舱主键</param>
|
|
/// <returns>返回用户信息</returns>
|
|
|
|
Task<RulesEngineExcuteResultDto> ExcuteRulesOceanBooking(string bookingId);
|
|
|
|
|
|
/// <summary>
|
|
/// 海运订舱请求规则引擎校验
|
|
/// </summary>
|
|
/// <param name="model">海运订舱报文类</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<RulesEngineExcuteResultDto> ExcuteRulesOceanBookingByModel(BookingOrderDto model);
|
|
}
|
|
}
|