Blog.Services.Helpers.Wcf.MediaResource.GetByGroup C# (CSharp) Method

GetByGroup() public method

public GetByGroup ( int albumId ) : List
albumId int
return List
        public List<Media> GetByGroup(int albumId)
        {
            using (var svc = new ServiceProxyHelper<IMediaService>("MediaService"))
            {
                return svc.Proxy.GetByGroup(albumId);
            }
        }