//*********************************************************************** // Class Constructors // private WriteToDbResults(bool dbSrc, string srcCnn, string srcQry, string dstCnn, string dstTable) { this._attempts = new WriteToDbAttemptCollection(); this._dbSrc = dbSrc; this._dstCnnStr = dstCnn; this._dstTable = dstTable; this._srcCnnStr = srcCnn; this._srcQry = srcQry; }
//*************************************************************************** // Class Constructors // public WriteToDbOperationCompleteEventArgs(WriteToDbAttemptCollection details) { this._atmpts = details; }