Skip to content

Instantly share code, notes, and snippets.

@gasparnagy
Created February 20, 2017 06:44
Show Gist options
  • Save gasparnagy/36441b384459f0ead204564bf562d5d8 to your computer and use it in GitHub Desktop.
Save gasparnagy/36441b384459f0ead204564bf562d5d8 to your computer and use it in GitHub Desktop.
public class ControllerContext
{
public CalculatorController Controller { get; } = new CalculatorController();
...
}
[Binding]
public class CalculatorSteps
{
public CalculatorSteps(ControllerContext controllerContext)
{
... //save controllerContext to an instance field
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment