using DG.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Zxd.Crm.Domain.Dto; using Zxd.Crm.Domain.Dto.Extuser; namespace Zxd.Crm.Domain.Impl { public interface IExtuserDomain : IScopedDependency { Task BindExtUser(ExtUserCreateDto model); } }