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 { public TotalGainLossCollection(ICollection gainLoss) : base(gainLoss) { } } }