Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joebuschmann/b540d80a0607e2164ba7321887f48820 to your computer and use it in GitHub Desktop.
Save joebuschmann/b540d80a0607e2164ba7321887f48820 to your computer and use it in GitHub Desktop.
[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