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.

14 lines
403 B
C#

using EntrustSettle.Model.Dtos;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace EntrustSettle.IServices
{
public interface IHYDService
{
Task<long> Submit(HydSubmitDto submitDto, int retryTimes = 2);
Task<List<HydQueryResultDto>> Query(string mblno);
Task<bool> FeedBack(List<HydFeedbackDto> hydFeedbackDtoList, int retryTimes = 2);
}
}