using System; | |
namespace Builder | |
{ | |
public class MyPoorClassClient | |
{ | |
public void ExecuteTheDefaultUseCase() | |
{ | |
var myClass = new MyClass("the name to use", false, false); | |
var theResult = myClass.DoSomeBehavior(); | |
} | |
public void ExecuteAnotherUseCase() | |
{ | |
var myClass = var myClass = new MyClass("the first another one", true, true); | |
var theResult = myClass.DoSomeBehavior(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment