erp-platform/api/src/Kurs.Platform.Domain/OrganizationUnits/IPlatformOuRepository.cs

13 lines
354 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
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);
}