[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRo
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-09 19:43:06
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows
In directory sc8-pr-cvs1:/tmp/cvs-serv12798/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows
Added Files:
SummaryRow.cs
Log Message:
Base class for Summary rows
--- NEW FILE: SummaryRow.cs ---
using System;
namespace QuantProject.Business.Financial.Accounting.Reporting.SummaryRows
{
/// <summary>
/// Summary description for SummaryRow.
/// </summary>
public class SummaryRow
{
internal string rowDescription;
internal object rowValue;
public string Description
{
get { return rowDescription; }
// set { rowDescription = value; }
}
public object Value
{
get { return rowValue; }
// set { rowValue = value; }
}
public SummaryRow()
{
//
// TODO: Add constructor logic here
//
}
}
}
|