AJH.CMS.Core.Data.GalleryManager.GetGallerysPublishXML C# (CSharp) Method

GetGallerysPublishXML() public static method

public static GetGallerysPublishXML ( int CategoryID, System.Enums GalleryType, int PageNumber, int PageSize, int &TotalCount ) : string
CategoryID int
GalleryType System.Enums
PageNumber int
PageSize int
TotalCount int
return string
        public static string GetGallerysPublishXML(int CategoryID, Enums.CMSEnums.GalleryType GalleryType, int PageNumber, int PageSize, ref int TotalCount)
        {
            int RowFrom = ((PageNumber - 1) * PageSize) + 1, RowTo = PageNumber * PageSize;
            return GalleryDataMapper.GetGallerysPublishXML(CategoryID, GalleryType, RowFrom, RowTo, ref TotalCount);
        }
    }