Ejemplo n.º 1
0
 /// <summary>
 /// Selects records as a collection (List) of WorkflowStepsMaster sorted by the sortByExpression starting from the startRowIndex, based on the search parameters
 /// </summary>
 public static List <WorkflowStepsMaster> SelectSkipAndTakeDynamicWhere(int?stepId, int?worKflowId, string approvalLevel, string description, string autoApprove, int?waitTime, string createdBy, DateTime?createdOn, string updatedBy, DateTime?updatedOn, int rows, int startRowIndex, string sortByExpression)
 {
     sortByExpression = GetSortExpression(sortByExpression);
     return(WorkflowStepsMasterDataLayer.SelectSkipAndTakeDynamicWhere(stepId, worKflowId, approvalLevel, description, autoApprove, waitTime, createdBy, createdOn, updatedBy, updatedOn, sortByExpression, startRowIndex, rows));
 }