コード例 #1
0
ファイル: EntityViewer.cs プロジェクト: alexyjian/ComBoost
 public NavigatePageCommand(EntityViewModel model)
 {
     if (model == null)
         throw new ArgumentNullException("model");
     Model = model;
 }
コード例 #2
0
ファイル: EntityExtension.cs プロジェクト: liny4cn/ComBoost
 /// <summary>
 /// Get a html string of pagination size button.
 /// </summary>
 /// <param name="helper">A htmlhelper.</param>
 /// <param name="model">Entity view model.</param>
 public static void PaginationButton(this HtmlHelper helper, EntityViewModel model)
 {
     if (model == null)
         throw new ArgumentNullException("model");
     helper.RenderPartial("_PaginationButton", model);
 }
コード例 #3
0
ファイル: EntityViewer.cs プロジェクト: alexyjian/ComBoost
 public ChangePageSizeCommand(EntityViewModel model)
 {
     if (model == null)
         throw new ArgumentNullException("model");
     Model = model;
 }