11 lines
259 B
C#
11 lines
259 B
C#
using ContactService.WebApi.Application.Dtos;
|
|
using IM.Commons;
|
|
|
|
namespace ContactService.WebApi.Application.IntegrationServices
|
|
{
|
|
public interface IIdentityIntegrationService
|
|
{
|
|
Task<Result<UserInfoDto>> FindUserByIdAsync(Guid id);
|
|
}
|
|
}
|