Blog.Services.Helpers.Wcf.AlbumResource.GetByUser C# (CSharp) 메소드

GetByUser() 공개 메소드

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