Exemple #1
0
 public Calculator(IConnect connection, IAdapt adapter, DateTime current_date,
                   SomeDelegate some_delegate)
 {
     this.connection    = connection;
     this.adapter       = adapter;
     this.current_date  = current_date;
     this.some_delegate = some_delegate;
 }
Exemple #2
0
 public Calculator(IAdapt adapter)
 {
     this.adapter = adapter;
 }
Exemple #3
0
 public Calculator(IConnect connection, IAdapt adapter)
 {
     this.connection = connection;
     this.adapter    = adapter;
 }