Blog.Services.Helpers.Wcf.UsersResource.GetByIdentityId C# (CSharp) Method

GetByIdentityId() public method

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