using EntrustSettle.Model.Dtos; using System.Collections.Generic; using System.Threading.Tasks; namespace EntrustSettle.IServices { public interface IHYDService { Task Submit(HydSubmitDto submitDto, bool isRetry = true); Task> Query(string mblno); Task FeedBack(List hydFeedbackDtoList, bool isRetry = true); } }