source: extensions/PiwigoLib/PiwigoLib/IService/IPwgAlbumsService.cs @ 27037

Last change on this file since 27037 was 12336, checked in by bayral, 13 years ago

rename category to Albums

File size: 1.2 KB
Line 
1using System;
2namespace Com.Piwigo.Lib.IService
3{
4    public interface IPwgAlbumsService
5    {
6        Boolean AddAlbum(String AlbumName, Int32? upperCatId, ref Int32 newId, ref String messageInfo);
7        System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgAlbum> GetAdminListOfAlbum();
8        System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgAlbum> GetListOfAlbum(Int32? CatgeroryId, Boolean? Recursive, Boolean? PublicOnly);
9        System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgImage> GetListOfImagesFormAlbum(Int32 AlbumId, Boolean? recursive, Int32? perPage, Int32? Page, Int32? Order, Int32? minRate, Int32? maxRate, Int32? minHit, Int32? maxHit, DateTime? minDateAvailable, DateTime? maxDateAvailable, DateTime? minDateCreated, DateTime? maxDateCreated, Int32? minRatio, Int32? maxRatio, Boolean? withThumbnail, ref Int32 PageReturned, ref Int32 PerPageeReturned, ref Int32 CountReturned);
10        Boolean UpdateAlbumInfo(Int32 IdCat, String AlbumName, String AlbumComment);
11        Boolean DeleteAlbum(Int32 AlbumId, String SecurityToken, Com.Piwigo.Lib.DTO.PwgAlbumPhotoDeletionModeEnum PhotoDeletionMode);
12        Boolean MoveAlbum(System.Collections.Generic.List<Int32> AlbumsId, Int32 parentAlbumId, String SecurityToken);
13    }
14}
Note: See TracBrowser for help on using the repository browser.