Ejemplo n.º 1
0
 /// <summary>
 /// Selects records as a collection (List) of WorkflowStepsMaster sorted by the sortByExpression and returns the rows (# of records) starting from the startRowIndex
 /// </summary>
 public static List <WorkflowStepsMaster> SelectSkipAndTake(int rows, int startRowIndex, string sortByExpression, bool isIncludeRelatedProperties = true)
 {
     sortByExpression = GetSortExpression(sortByExpression);
     return(WorkflowStepsMasterDataLayer.SelectSkipAndTake(sortByExpression, startRowIndex, rows, isIncludeRelatedProperties));
 }