16 lines
352 B
C#
16 lines
352 B
C#
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<bool> BindExtUser(ExtUserCreateDto model);
|
|
}
|
|
} |