Ignore:
Timestamp:
Oct 10, 2010, 10:45:43 PM (14 years ago)
Author:
bayral
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Service/PwgCategoriesService.cs

    r3837 r7149  
    77using Com.Piwigo.Lib.Proxy.Response;
    88using Com.Piwigo.Lib.DTO.Helper;
     9using Com.Piwigo.Lib.IService;
    910
    1011namespace Com.Piwigo.Lib.Service
    1112{
    1213
    13     static public class PwgCategoriesService
     14    internal sealed class PwgCategoriesService : IPwgCategoriesService
    1415    {
    1516        /// <summary>
     
    1819        /// <param name="sortedByCounter"></param>
    1920        /// <returns></returns>
    20         static public List<PwgCategory> GetListOfCategory(Int32? CatgeroryId, Boolean? Recursive, Boolean? PublicOnly)
     21        public List<PwgCategory> GetListOfCategory(Int32? CatgeroryId, Boolean? Recursive, Boolean? PublicOnly)
    2122        {
    2223            List<PwgCategory> returnValue = new List<PwgCategory>();
     
    5556        /// </summary>
    5657        /// <returns></returns>
    57         static public List<PwgCategory> GetAdminListOfCategory()
     58        public List<PwgCategory> GetAdminListOfCategory()
    5859        {
    5960            List<PwgCategory> returnValue = new List<PwgCategory>();
     
    9697        /// <param name="messageInfo">Message returned by the server</param>
    9798        /// <returns>false, if a error occurs</returns>
    98         static public Boolean AddCategory(String categoryName, Int32? upperCatId, ref Int32 newId, ref String messageInfo)
     99        public Boolean AddCategory(String categoryName, Int32? upperCatId, ref Int32 newId, ref String messageInfo)
    99100        {
    100101            Boolean returnValue = false;
     
    139140        /// <param name="categoryComment"></param>
    140141        /// <returns></returns>
    141         static public Boolean UpdateCategoryInfo(Int32 IdCat, String categoryName, String categoryComment)
     142        public Boolean UpdateCategoryInfo(Int32 IdCat, String categoryName, String categoryComment)
    142143        {
    143144            Boolean returnValue = false;
     
    195196        /// <param name="CountReturned"></param>
    196197        /// <returns></returns>
    197         static public List<PwgImage> GetListOfImagesFormCategory(Int32 categoryId,
     198        public List<PwgImage> GetListOfImagesFormCategory(Int32 categoryId,
    198199                                                    Boolean? recursive,
    199200                                                    Int32? perPage,
     
    269270        /// <param name="response"></param>
    270271        /// <param name="session"></param>
    271         static public List<PwgCategory> ConvertProxyResponseToDTO(PwgCategoriesProxyResponse response)
     272        internal static List<PwgCategory> ConvertProxyResponseToDTO(PwgCategoriesProxyResponse response)
    272273        {
    273274            List<PwgCategory> returnValue = new List<PwgCategory>();
     
    287288        /// <param name="response"></param>
    288289        /// <param name="session"></param>
    289         static public PwgCategory ConvertProxyResponseToDTO(PwgCategoryProxyResponse response)
     290        internal static PwgCategory ConvertProxyResponseToDTO(PwgCategoryProxyResponse response)
    290291        {
    291292            PwgCategory returnValue = new PwgCategory();
Note: See TracChangeset for help on using the changeset viewer.