示例#1
0
 public GetProcedure(IGetDbConnection getDbConnection, IListProcedureParameter listProcedureParameter, IGetProcedureDefinition getProcedureDefinition, IGetDatabasePermission getDatabasePermission)
 {
     this.getDbConnection        = getDbConnection;
     this.listProcedureParameter = listProcedureParameter;
     this.getProcedureDefinition = getProcedureDefinition;
     this.getDatabasePermission  = getDatabasePermission;
 }
示例#2
0
 public ListTable(IGetDbConnection getDbConnection, IListTableColumn listTableColumn, IListTableIndex listTableIndex, IParseCriteria parseCriteria)
 {
     this.getDbConnection = getDbConnection;
     this.listTableIndex  = listTableIndex;
     this.listTableColumn = listTableColumn;
     this.parseCriteria   = parseCriteria;
 }
示例#3
0
 public CheckProcedureCreated(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
示例#4
0
 public ListSqlType(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
示例#5
0
 public GetTableColumnType(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
示例#6
0
 public ListTableIndex(IGetDbConnection getDbConnection, IListTableIndexColumn listTableIndexColumn)
 {
     this.getDbConnection      = getDbConnection;
     this.listTableIndexColumn = listTableIndexColumn;
 }
示例#7
0
 public GetView(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
 public ListTableIndexColumn(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
示例#9
0
 public GetDatabasePermission(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
示例#10
0
 public ListTableColumn(IGetDbConnection getDbConnection, IGetTableColumnType getTableColumnType)
 {
     this.getDbConnection    = getDbConnection;
     this.getTableColumnType = getTableColumnType;
 }
示例#11
0
 public DeployProcedure(IGetDbConnection getDbConnection, ICheckProcedureCreated checkProcedureCreated)
 {
     this.getDbConnection       = getDbConnection;
     this.checkProcedureCreated = checkProcedureCreated;
 }
 public GetProcedureDefinition(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }
示例#13
0
 public GetTable(IGetDbConnection getDbConnection, IListTableColumn listTableColumn, IListTableIndex listTableIndex)
 {
     this.getDbConnection = getDbConnection;
     this.listTableIndex  = listTableIndex;
     this.listTableColumn = listTableColumn;
 }
示例#14
0
 public ListProcedure(IGetDbConnection getDbConnection, IListProcedureParameter listProcedureParameter, IParseCriteria parseCriteria)
 {
     this.getDbConnection        = getDbConnection;
     this.listProcedureParameter = listProcedureParameter;
     this.parseCriteria          = parseCriteria;
 }
 public ListProcedureParameter(IGetDbConnection getDbConnection)
 {
     this.getDbConnection = getDbConnection;
 }