Пример #1
0
 public static ForumPostsDrop FromIndex(ForumPostsDrop postsDrop, int startRowIndex)
 {
     return(new ForumPostsDrop(postsDrop.PortalLiquidContext, postsDrop.Dependencies, postsDrop.ForumThread, startRowIndex, postsDrop.PageSize));
 }
Пример #2
0
 public static IEnumerable <ForumPostDrop> All(ForumPostsDrop postsDrop)
 {
     return(postsDrop.All);
 }
Пример #3
0
 public static ForumPostsDrop Take(ForumPostsDrop postsDrop, int pageSize)
 {
     return(new ForumPostsDrop(postsDrop.PortalLiquidContext, postsDrop.Dependencies, postsDrop.ForumThread, postsDrop.StartRowIndex, pageSize));
 }