erp-platform/api/src/Kurs.Platform.Domain/OrganizationUnits/IPlatformOuRepository.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

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);
}