[Quantproject-developers] QuantProject/b4_Business/a0_Validation ValidateDataTable.cs,1.3,1.4
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-05-26 15:32:03
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19861/b4_Business/a0_Validation Modified Files: ValidateDataTable.cs Log Message: Minor variable name changes have been applied Index: ValidateDataTable.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation/ValidateDataTable.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ValidateDataTable.cs 9 May 2004 16:21:18 -0000 1.3 --- ValidateDataTable.cs 26 May 2004 15:31:52 -0000 1.4 *************** *** 21,24 **** --- 21,26 ---- private DataTable tableOfTickersToBeValidated; + public Quotes Quotes; + public ValidateDataTable() { *************** *** 87,97 **** this.AcceptChanges(); } ! public void AddRows( string tickerIsLike ) { ! Quotes quotesToBeValidated = new Quotes( tickerIsLike ); // quotesToBeValidated.SuspiciousDataRow += // new SuspiciousDataRowEventHandler( suspiciousDataRowEventHandler ); // new QuotesToBeValidated.SuspiciousDataRowEventHandler( suspiciousDataRowEventHandler ); ! this.addRows_with_quotesToBeValidated( quotesToBeValidated ); } // public void AddRows(double suspiciousRatio ) --- 89,99 ---- this.AcceptChanges(); } ! public void AddRows( string ticker ) { ! this.Quotes = new Quotes( ticker ); // quotesToBeValidated.SuspiciousDataRow += // new SuspiciousDataRowEventHandler( suspiciousDataRowEventHandler ); // new QuotesToBeValidated.SuspiciousDataRowEventHandler( suspiciousDataRowEventHandler ); ! this.addRows_with_quotesToBeValidated( this.Quotes ); } // public void AddRows(double suspiciousRatio ) *************** *** 113,119 **** public void AddRows( string ticker , DateTime startDate , DateTime endDate ) { ! Quotes quotesToBeValidated = ! new Quotes( ticker , startDate , endDate ); ! this.addRows_with_quotesToBeValidated( quotesToBeValidated ); } /// <summary> --- 115,120 ---- public void AddRows( string ticker , DateTime startDate , DateTime endDate ) { ! this.Quotes = new Quotes( ticker , startDate , endDate ); ! this.addRows_with_quotesToBeValidated( this.Quotes ); } /// <summary> |