Blog.Services.Helpers.Wcf.AddressResource.GetByUser C# (CSharp) Метод

GetByUser() публичный Метод

public GetByUser ( int userId ) : Address
userId int
Результат Blog.Common.Contracts.Address
        public Address GetByUser(int userId)
        {
            using (var svc = new ServiceProxyHelper<IAddressService>("AddressService"))
            {
                return svc.Proxy.GetByUser(userId);
            }
        }