[Quantproject-developers] QuantProject/b4_Business/a0_Validation IValidator.cs,1.1,1.2
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-05-08 17:15:58
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6769/b4_Business/a0_Validation Modified Files: IValidator.cs Log Message: The Validate method now requires a DataTables.Quotes object Index: IValidator.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation/IValidator.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IValidator.cs 26 Apr 2004 15:37:59 -0000 1.1 --- IValidator.cs 8 May 2004 17:15:50 -0000 1.2 *************** *** 1,4 **** --- 1,5 ---- using System; using System.Data; + using QuantProject.Data.DataTables; namespace QuantProject.Business.Validation *************** *** 13,17 **** { event SuspiciousDataRowEventHandler SuspiciousDataRow; ! void Validate( DataTable dataTable ); } } --- 14,18 ---- { event SuspiciousDataRowEventHandler SuspiciousDataRow; ! void Validate( Quotes quotes ); } } |