Exemplo n.º 1
0
        public bool Continue(SessionStep step)
        {
            if (IsStepValid(step))
            {
                CurrentStep = new SessionStepExecution(step, DateTime.Now);

                return(Continue());
            }

            return(false);
        }
Exemplo n.º 2
0
 public bool ContinueStep(SessionStep step)
 {
     return(_service.Continue());
 }
Exemplo n.º 3
0
 private static bool IsStepValid(SessionStep step)
 {
     return(step != null && step.Action != null && step.Completion != null);
 }