7.5.1.1 Adding the View Model; e.g. 716 The PagingInfo View Model Class

This commit is contained in:
Jason Zhu 2021-08-21 16:57:14 +10:00
parent 0c548df719
commit 103a66938d
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace SportsStore.WebUI.Models
{
public class PagingInfo
{
public int TotalItems { get; set; }
public int ItemsPerPage { get; set; }
public int CurrentPage { get; set; }
public int TotalPages
{
get { return (int)Math.Ceiling((decimal)TotalItems / ItemsPerPage); }
}
}
}

View File

@ -165,6 +165,7 @@
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="Infrastructure\NinjectControllerFactory.cs" />
<Compile Include="Models\PagingInfo.cs" />
<Compile Include="Product.cs">
<DependentUpon>EFDbContext.tt</DependentUpon>
</Compile>
@ -227,7 +228,6 @@
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
<Folder Include="Models\" />
<Folder Include="Views\Productr\" />
</ItemGroup>
<ItemGroup>