Blog.Services.Helpers.Wcf.AlbumResource.GetByUser C# (CSharp) Method

GetByUser() public method

public GetByUser ( int userId ) : List
userId int
return List
        public List<Album> GetByUser(int userId)
        {
            using (var svc = new ServiceProxyHelper<IAlbumService>("AlbumService"))
            {
                return svc.Proxy.GetByUser(userId);
            }
        }