public WorkflowStage GetByOrder(int order)
        {
            WorkflowStage result = null;

            result = _UOW.WorkflowStageRepository.GetByOrder(order);

            return(result);
        }
        public WorkflowStage NextStage(WorkflowStage workflowStage)
        {
            WorkflowStage result = null;

            result = _UOW.WorkflowStageRepository.GetNext(workflowStage);

            return(result);
        }
Esempio n. 3
0
        public WorkflowStage GetByType(string type)
        {
            WorkflowStage result = null;

            result = _UOW.WorkflowStageRepository.GetByType(type);

            return(result);
        }
        public WorkflowStage GetByID(Guid ID)
        {
            WorkflowStage result = null;

            try
            {
                result = _UOW.WorkflowStageRepository.GetByID(ID);
            }
            catch
            {
            }
            return(result);
        }
        public WorkflowStage PreviousStage(WorkflowStage workflowStage)
        {
            var result = _UOW.WorkflowStageRepository.GetPrevious(workflowStage);

            return(result);
        }