public CommandCreatorImpl(IDbCommandCreatorFactory factory, IDictionary inParameters)
	        {
	            this.factory = factory;    
	            this.inParams = inParameters;
	        }
 public CommandCreatorImpl(IDbCommandCreatorFactory factory, IDictionary inParameters)
 {
     this.factory  = factory;
     this.inParams = inParameters;
 }
 public CommandCreatorWithParamValues(IDbCommandCreatorFactory factory, IList inParamValues)
 {
     this.factory = factory;                
     this.inParamValues = inParamValues;
 }
 public CommandCreatorWithParamValues(IDbCommandCreatorFactory factory, IList inParamValues)
 {
     this.factory       = factory;
     this.inParamValues = inParamValues;
 }