Exemplo n.º 1
0
 //Use dependency injection to provide implementation for interface.  "new" is a code smell
 public FluentExample(IFluentInterface f)
 {
     fluent = f;
 }
Exemplo n.º 2
0
 public FluentClient(IFluentInterface fluent)
 {
     this.fluent = fluent;
 }
Exemplo n.º 3
0
 FluentClient(IFluentInterface fluent)
 {
     this.fluent = fluent;
 }