示例#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;
 }
示例#2
0
 public Calculator(IAdapt adapter)
 {
     this.adapter = adapter;
 }
示例#3
0
 public Calculator(IConnect connection, IAdapt adapter)
 {
     this.connection = connection;
     this.adapter    = adapter;
 }