Blog.Services.Implementation.UsersService.GetByIdentityId C# (CSharp) 메소드

GetByIdentityId() 공개 메소드

public GetByIdentityId ( string identityId ) : User
identityId string
리턴 Blog.Common.Contracts.User
        public User GetByIdentityId(string identityId)
        {
            return _usersLogic.GetByIdentity(identityId);
        }