1
namespace TempWeb
.Controllers
3 using Castle
.MonoRail
.Framework
;
5 [DynamicActionProvider(typeof(WizardActionProvider
))]
6 public class AccCreationWizard
: Controller
, IWizardController
8 public void OnWizardStart()
12 public bool OnBeforeStep(string wizardName
, string stepName
, IWizardStepPage step
)
17 public void OnAfterStep(string wizardName
, string stepName
, IWizardStepPage step
)
21 public IWizardStepPage
[] GetSteps(IEngineContext context
)
23 return new IWizardStepPage
[] { new Introduction() }
;
26 public class Introduction
: WizardStepPage