Created
September 8, 2015 15:12
This file contains 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
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