[Quantproject-developers] QuantProject/b3_Data/DataTables Quotes.cs,NONE,1.1
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-05-08 17:56:25
|
Update of /cvsroot/quantproject/QuantProject/b3_Data/DataTables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14565/DataTables Added Files: Quotes.cs Log Message: DataTable for quotes table data --- NEW FILE: Quotes.cs --- using System; using System.Data; using QuantProject.DataAccess.Tables; namespace QuantProject.Data.DataTables { /// <summary> /// DataTable for quotes table data /// </summary> public class Quotes : DataTable { private void fillDataTable( string ticker , DateTime startDate , DateTime endDate ) { QuantProject.DataAccess.Tables.Quotes.SetDataTable( ticker , startDate , endDate , this ); } public Quotes( string ticker , DateTime startDate , DateTime endDate ) { this.fillDataTable( ticker , startDate , endDate ); } public Quotes( string ticker ) { this.fillDataTable( ticker , QuantProject.DataAccess.Tables.Quotes.GetStartDate( ticker ) , QuantProject.DataAccess.Tables.Quotes.GetEndDate( ticker ) ); } } } |