using GroupService.WebApi.Application.Dtos; using IM.Commons; namespace GroupService.WebApi.Application.IntegrationServices { public interface IIdentityIntegrationService { Task> FindUserByIdAsync(Guid id); Task>> FindByIdsAsync(List ids); } }