Example #1
0
 public static string MoveToStep(int stepNo)
 {
     return(StepperStore.MoveToStepNo(stepNo).ActionName);
 }
Example #2
0
 public static string  NextStep()
 {
     return(StepperStore.MoveToNextStep().ActionName);
 }
Example #3
0
 public static string PreviousStep()
 {
     return(StepperStore.MoveToPreviousStep().ActionName);
 }
Example #4
0
        //public static void AddStep(string action, string controller,bool isLast = true)
        //{
        //    StepperStore.Steps.Add(new Step { ActionName = action, Controller = controller,IsLast = isLast});
        //}

        public static string FirstStep()
        {
            return(StepperStore.MoveToFirstStep().ActionName);
        }