Created
July 1, 2018 02:21
-
-
Save joebuschmann/b540d80a0607e2164ba7321887f48820 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
[StepArgumentTransformation("the customer")] | |
public Customer CreateCustomer(Table table) | |
{ | |
return table.CreateInstance<Customer>(); | |
} | |
[Given(@"the customer")] | |
public void GivenTheCustomer(Customer customer) | |
{ | |
_customer = customer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment