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/PwgTagsService.cs

    r3834 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 PwgTagsService
     14    internal sealed class PwgTagsService : IPwgTagsService
    1415    {
    1516        /// <summary>
     
    1819        /// <param name="sortedByCounter"></param>
    1920        /// <returns></returns>
    20         static public List<PwgTag> GetListOfTag(Boolean? sortedByCounter)
     21        public List<PwgTag> GetListOfTag(Boolean? sortedByCounter)
    2122        {
    2223            List<PwgTag> returnValue = new List<PwgTag>();
     
    5657        /// <param name="sortedByCounter"></param>
    5758        /// <returns></returns>
    58         static public List<PwgTag> GetAdminListOfTag()
     59        public List<PwgTag> GetAdminListOfTag()
    5960        {
    6061            List<PwgTag> returnValue = new List<PwgTag>();
     
    9495        /// <param name="tagName"></param>
    9596        /// <returns></returns>
    96         static public Boolean AddTag(String tagName, ref Int32 newId, ref String messageInfo)
     97        public Boolean AddTag(String tagName, ref Int32 newId, ref String messageInfo)
    9798        {
    9899            Boolean returnValue = false;
     
    154155        /// <param name="CountReturned"></param>
    155156        /// <returns></returns>
    156         static public List<PwgImage> GetListOfImagesFormTags(List<Int32> tagsId,
     157        public List<PwgImage> GetListOfImagesFormTags(List<Int32> tagsId,
    157158                                                            List<String> tagsUrlName,
    158159                                                            List<String> tagsName,
     
    233234        /// <param name="response"></param>
    234235        /// <param name="session"></param>
    235         static public List<PwgTag> ConvertProxyResponseToDTO(PwgTagsProxyResponse response)
     236        internal static List<PwgTag> ConvertProxyResponseToDTO(PwgTagsProxyResponse response)
    236237        {
    237238            List<PwgTag> returnValue = new List<PwgTag>();
     
    251252        /// <param name="response"></param>
    252253        /// <param name="session"></param>
    253         static public PwgTag ConvertProxyResponseToDTO(PwgTagProxyResponse response)
     254        internal static PwgTag ConvertProxyResponseToDTO(PwgTagProxyResponse response)
    254255        {
    255256            PwgTag returnValue = new PwgTag();
Note: See TracChangeset for help on using the changeset viewer.