25 lines
1.0 KiB
C#
25 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
using MarketData.Utils;
|
|
using System.Collections.ObjectModel;
|
|
using MarketData.Generator.GainLoss;
|
|
using MarketData.DataAccess;
|
|
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
}
|