public static ForumPostsDrop FromIndex(ForumPostsDrop postsDrop, int startRowIndex) { return(new ForumPostsDrop(postsDrop.PortalLiquidContext, postsDrop.Dependencies, postsDrop.ForumThread, startRowIndex, postsDrop.PageSize)); }
public static IEnumerable <ForumPostDrop> All(ForumPostsDrop postsDrop) { return(postsDrop.All); }
public static ForumPostsDrop Take(ForumPostsDrop postsDrop, int pageSize) { return(new ForumPostsDrop(postsDrop.PortalLiquidContext, postsDrop.Dependencies, postsDrop.ForumThread, postsDrop.StartRowIndex, pageSize)); }