public StepDefinitionBinding(StepDefinitionType stepDefinitionType, string regexString, IBindingMethod bindingMethod, BindingScope bindingScope)
     : this(stepDefinitionType, RegexFactory.Create(regexString), bindingMethod, bindingScope)
 {
 }
 public StepArgumentTransformationBinding(string regexString, IBindingMethod bindingMethod)
     : this(RegexFactory.Create(regexString), bindingMethod)
 {
 }