17 lines
832 B
C#
17 lines
832 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MarketData.MarketDataModel.GainLoss
|
|
{
|
|
// ****************************************************************************************************************************************************
|
|
// ********************************************************************** T O T A L G A I N L O S S *************************************************
|
|
// ****************************************************************************************************************************************************
|
|
// This Gain/Loss provides a picture of the total Gain/Loss. This is Gain/Loss generated by all trades
|
|
public class TotalGainLossCollection : List<TotalGainLossItem>
|
|
{
|
|
public TotalGainLossCollection(ICollection<TotalGainLossItem> gainLoss)
|
|
: base(gainLoss)
|
|
{
|
|
}
|
|
}
|
|
}
|