23 lines
576 B
C#
23 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Impl
|
|
{
|
|
public interface IInneruserDomain : IScopedDependency
|
|
{
|
|
Task<List<InneruserDto>> GetInnerusers(string eids);
|
|
|
|
Task<List<InneruserDto>> GetInnerusersByName(string eidsOrNames);
|
|
|
|
Task<bool> SyncSsoOrganization();
|
|
|
|
Task<InneruserDto> GetInneruser(int eid);
|
|
|
|
Task<List<InneruserTreeDto>> GetInneruserTree();
|
|
|
|
Task<List<InneruserTreeDto>> GetInneruserTreeKeyName();
|
|
}
|
|
} |