source: extensions/PiwigoLib/PiwigoLib/IService/IPwgCategoriesService.cs @ 7150

Last change on this file since 7150 was 7150, checked in by bayral, 14 years ago

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File size: 1008 bytes
Line 
1using System;
2namespace Com.Piwigo.Lib.IService
3{
4    public interface IPwgCategoriesService
5    {
6        bool AddCategory(string categoryName, int? upperCatId, ref int newId, ref string messageInfo);
7        System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgCategory> GetAdminListOfCategory();
8        System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgCategory> GetListOfCategory(int? CatgeroryId, bool? Recursive, bool? PublicOnly);
9        System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgImage> GetListOfImagesFormCategory(int categoryId, bool? recursive, int? perPage, int? Page, int? Order, int? minRate, int? maxRate, int? minHit, int? maxHit, DateTime? minDateAvailable, DateTime? maxDateAvailable, DateTime? minDateCreated, DateTime? maxDateCreated, int? minRatio, int? maxRatio, bool? withThumbnail, ref int PageReturned, ref int PerPageeReturned, ref int CountReturned);
10        bool UpdateCategoryInfo(int IdCat, string categoryName, string categoryComment);
11    }
12}
Note: See TracBrowser for help on using the repository browser.