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