using System.Threading.Tasks; namespace Dilon.Core { public interface IUserManager { string Account { get; } string Name { get; } bool SuperAdmin { get; } SysUser User { get; } long UserId { get; } Task CheckUserAsync(long userId, bool tracking = true); Task GetUserEmpInfo(long userId); } }