Exemplo n.º 1
0
 public int DoSomething(IBar bar)
 {
     Count = bar.DoSomethingElse(1, 2);
     return(Count);
 }
Exemplo n.º 2
0
 public void DoSomethingWithoutResult(IBar bar)
 {
     Count = bar.DoSomethingElse(1, 2);
 }
Exemplo n.º 3
0
 public void DoSomething()
 {
     _bar.DoSomethingElse();
 }