Created
February 20, 2017 06:44
-
-
Save gasparnagy/36441b384459f0ead204564bf562d5d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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