Blog.Services.Helpers.Wcf.UsersResource.GetByIdentityId C# (CSharp) 메소드

GetByIdentityId() 공개 메소드

public GetByIdentityId ( string identityId ) : User
identityId string
리턴 Blog.Common.Contracts.User
        public User GetByIdentityId(string identityId)
        {
            using (var svc = new ServiceProxyHelper<IUsersService>("UsersService"))
            {
                return svc.Proxy.GetByIdentityId(identityId);
            }
        }