* Rename Umbraco.Core namespace to Umbraco.Cms.Core * Move extension methods in core project to Umbraco.Extensions * Move extension methods in core project to Umbraco.Extensions * Rename Umbraco.Examine namespace to Umbraco.Cms.Examine * Move examine extensions to Umbraco.Extensions namespace * Reflect changed namespaces in Builder and fix unit tests * Adjust namespace in Umbraco.ModelsBuilder.Embedded * Adjust namespace in Umbraco.Persistence.SqlCe * Adjust namespace in Umbraco.PublishedCache.NuCache * Align namespaces in Umbraco.Web.BackOffice * Align namespaces in Umbraco.Web.Common * Ensure that SqlCeSupport is still enabled after changing the namespace * Align namespaces in Umbraco.Web.Website * Align namespaces in Umbraco.Web.UI.NetCore * Align namespaces in Umbraco.Tests.Common * Align namespaces in Umbraco.Tests.UnitTests * Align namespaces in Umbraco.Tests.Integration * Fix errors caused by changed namespaces * Fix integration tests * Undo the Umbraco.Examine.Lucene namespace change This breaks integration tests on linux, since the namespace wont exists there because it's only used on windows. * Fix merge * Fix Merge
57 lines
1.6 KiB
C#
57 lines
1.6 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Umbraco.Cms.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// Represents a paged result for a model collection
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
[DataContract(Name = "pagedCollection", Namespace = "")]
|
|
public abstract class PagedResult
|
|
{
|
|
public PagedResult(long totalItems, long pageNumber, long pageSize)
|
|
{
|
|
TotalItems = totalItems;
|
|
PageNumber = pageNumber;
|
|
PageSize = pageSize;
|
|
|
|
if (pageSize > 0)
|
|
{
|
|
TotalPages = (long)Math.Ceiling(totalItems / (decimal)pageSize);
|
|
}
|
|
else
|
|
{
|
|
TotalPages = 1;
|
|
}
|
|
}
|
|
|
|
[DataMember(Name = "pageNumber")]
|
|
public long PageNumber { get; private set; }
|
|
|
|
[DataMember(Name = "pageSize")]
|
|
public long PageSize { get; private set; }
|
|
|
|
[DataMember(Name = "totalPages")]
|
|
public long TotalPages { get; private set; }
|
|
|
|
[DataMember(Name = "totalItems")]
|
|
public long TotalItems { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Calculates the skip size based on the paged parameters specified
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Returns 0 if the page number or page size is zero
|
|
/// </remarks>
|
|
public int GetSkipSize()
|
|
{
|
|
if (PageNumber > 0 && PageSize > 0)
|
|
{
|
|
return Convert.ToInt32((PageNumber - 1) * PageSize);
|
|
}
|
|
return 0;
|
|
}
|
|
}
|
|
}
|