1234567891011121314 |
- using Hotline.Share.Dtos.Snapshot;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.Claims;
- using System.Text;
- using System.Threading.Tasks;
- namespace Hotline.ThirdAccountDomainServices.Interfaces;
- public interface IThirdAccountDomainService
- {
- Task UpdateExternalIdAsync(string id,string oldExternalId, string externalId, CancellationToken token);
- }
|