예제 #1
0
 public OutputFibonacciToDatabase(ConnectionStringSettings connectionString, int max, Should should)
 {
     this.max             = max;
     this.should          = should;
     this.OutputOperation = new FibonacciOutput(connectionString);
 }
예제 #2
0
 public OutputFibonacciToDatabase(string connectionStringName, int max, Should should)
 {
     this.max             = max;
     this.should          = should;
     this.OutputOperation = new FibonacciOutput(connectionStringName);
 }