using Crm.Core.Identity.Domain.Dto; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Identity.Domain.Impl { public interface IIdentityDomain : IScopedDependency { Task Encrypt(EncryptDto encryptDto); Task Decrypt(DecryptDto decryptDto); } }