12 lines
354 B
C#
12 lines
354 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kurs.Platform.OrganizationUnits;
|
|
|
|
public interface IPlatformOuRepository
|
|
{
|
|
Task<List<Guid>> GetOrganizationUnitIdsWithChildren(Guid userId);
|
|
Task<List<Guid>> GetOrganizationUnitIds(Guid userId);
|
|
Task<List<Guid>> GetMemberIdsDeepAsync(string code);
|
|
}
|