19 lines
399 B
C#
19 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Zxd.Core.Domain.Dto;
|
|
|
|
namespace Zxd.Domain.Impl
|
|
{
|
|
public interface IInneruserDomain : IScopedDependency
|
|
{
|
|
Task<bool> SyncSsoOrganization();
|
|
|
|
Task<InneruserDto> GetInneruser(int eid);
|
|
|
|
Task<List<SsoOrganizationDto>> GetOrganization();
|
|
}
|
|
}
|