[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRo
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-11-10 21:36:41
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows
In directory sc8-pr-cvs1:/tmp/cvs-serv23354/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/SummaryRows
Added Files:
TotalNetProfit.cs
Log Message:
Computes the total net profit for the
account report summary object
--- NEW FILE: TotalNetProfit.cs ---
using System;
using System.Data;
using QuantProject.Business.Financial.Accounting.Reporting.Tables;
namespace QuantProject.Business.Financial.Accounting.Reporting.SummaryRows
{
/// <summary>
/// Summary description for TotalNumberOfTrades.
/// </summary>
public class TotalNetProfit : SummaryRow
{
public TotalNetProfit( Summary summary )
{
this.rowDescription = "Total net profit";
this.rowValue = summary.TotalPnl;
}
}
}
|