Ejemplo n.º 1
0
        /// <summary>
        /// Selects records based on the passed filters as a collection (List) of WorkflowStepsMaster sorted by the sort expression.
        /// </summary>
        public static List <WorkflowStepsMaster> SelectAllDynamicWhere(int?stepId, int?worKflowId, string approvalLevel, string description, string autoApprove, int?waitTime, string createdBy, DateTime?createdOn, string updatedBy, DateTime?updatedOn, string sortByExpression)
        {
            List <WorkflowStepsMaster> objWorkflowStepsMasterCol = WorkflowStepsMasterDataLayer.SelectAllDynamicWhere(stepId, worKflowId, approvalLevel, description, autoApprove, waitTime, createdBy, createdOn, updatedBy, updatedOn);

            return(SortByExpression(objWorkflowStepsMasterCol, sortByExpression));
        }