Beispiel #1
0
 public UpdateCommand(
     SqlBuilder sqlBuilder,
     ISqlExecutorWithGeneric sqlExecutor)
 {
     this.sqlBuilder  = sqlBuilder;
     this.sqlExecutor = sqlExecutor;
 }
Beispiel #2
0
 private DataBase(
     ISelectCommand selectCommand,
     IInsertCommand insertCommand,
     IDeleteCommand deleteCommand,
     IUpdateCommand updateCommand,
     ISqlExecutorWithGeneric sqlExecutor)
 {
     this.selectCommand = selectCommand;
     this.insertCommand = insertCommand;
     this.deleteCommand = deleteCommand;
     this.updateCommand = updateCommand;
     this.sqlExecutor   = sqlExecutor;
 }
Beispiel #3
0
 public DeleteCommand(ISqlExecutorWithGeneric sqlExecutor, ISqlBuilder sqlBuilder)
 {
     this.sqlExecutor = sqlExecutor;
     this.sqlBuilder  = sqlBuilder;
 }