////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public LaiYoung_OneRoundMessage(LaiYoung_OneRoundMessage sourceMessage, LaiYoung_OneRoundChannel sendingChannel): base(sourceMessage, sendingChannel)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///      A message that is duplicated to the source except for the channel parameters.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///      This constructor is useful when you want to forward a message to other channels
        ///
        /// \author Ilanh
        /// \date 14/03/2017
        ///
        /// \param sourceMessage  (LaiYoung_OneRoundMessage) - Message describing the source.
        /// \param sendingChannel (LaiYoung_OneRoundChannel) - The sending channel.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public LaiYoung_OneRoundMessage(LaiYoung_OneRoundNetwork network, LaiYoung_OneRoundMessage sourceMessage, LaiYoung_OneRoundChannel sendingChannel) :
            base(network, sourceMessage, sendingChannel)
        {
        }
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public LaiYoung_OneRoundMessage(LaiYoung_OneRoundNetwork network, LaiYoung_OneRoundMessage sourceMessage): base(network, sourceMessage)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///      Constructor that generates a duplication of a source message.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///
        /// \author Ilanh
        /// \date 27/06/2017
        ///
        /// \param network       (LaiYoung_OneRoundNetwork) - The network.
        /// \param sourceMessage (LaiYoung_OneRoundMessage) - Message describing the source.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public LaiYoung_OneRoundMessage(LaiYoung_OneRoundNetwork network, LaiYoung_OneRoundMessage sourceMessage) : base(network, sourceMessage)
        {
        }