using System.Threading.Tasks; using Abp.Application.Services.Dto; using ContractService.LawFirm.Dto; using IwbZero.AppServiceBase; using ContractService.Lawyer.Dto; namespace ContractService.Lawyer { public interface ILawyerAppService : IIwbZeroAsyncCrudAppService { /// /// 绑定账号 /// /// /// Task Bind(BindDto input); /// /// 解绑账号 /// /// /// Task UnBind(EntityDto input); #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion } }