/// <summary>
 /// Creates new <see cref="InterfacesRowWrapper"/> based on specified Interface row
 /// </summary>
 /// <param name="parent">Interface row</param>
 /// <param name="_ProtocolWrapper">link to the <see cref="ProtocolAndSerialRowWrapper"/></param>
 public InterfacesRowWrapper(ComunicationNet.InterfacesRow parent, ProtocolAndSerialRowWrapper _ProtocolWrapper)
     : base(parent)
 {
     ProtocolWrapper = _ProtocolWrapper;
 }
 /// <summary>
 /// Creates new <see cref="SegmentsRowWrapper"/> object based on specified Segment row
 /// </summary>
 /// <param name="parent">Segment row</param>
 /// <param name="_ProtocolWrapper">link to the <see cref="ProtocolAndSerialRowWrapper"/></param>
 public SegmentsRowWrapper(ComunicationNet.SegmentsRow parent, ProtocolAndSerialRowWrapper _ProtocolWrapper)
     : base(parent)
 {
     ProtocolWrapper = _ProtocolWrapper;
 }
 /// <summary>
 /// Creates new <see cref="DataBlocksRowWrapper"/> object based on specified DataBlok row
 /// </summary>
 /// <param name="parent">DataBlok row</param>
 /// <param name="_ProtocolWrapper">link to the <see cref="ProtocolAndSerialRowWrapper"/></param>
 public DataBlocksRowWrapper(ComunicationNet.DataBlocksRow parent, ProtocolAndSerialRowWrapper _ProtocolWrapper)
     : base(parent)
 {
     ProtocolWrapper = _ProtocolWrapper;
 }