/// <summary>
 /// Initializes a new instance of the NServiceKit.Text.Tests.DynamicModels.DataModel.ObjectGraph
 /// class.
 /// </summary>
 /// <param name="info">   The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to
 /// populate with data.</param>
 /// <param name="context">The destination (see
 /// <see cref="T:System.Runtime.Serialization.StreamingContext" />) for this serialization.</param>
 protected ObjectGraph(SerializationInfo info, StreamingContext context)
 {
     internalCollection = (CustomCollection)info.GetValue("col", typeof(CustomCollection));
     Data = (DataContainer)info.GetValue("data", typeof(DataContainer));
 }
 /// <summary>
 /// Initializes a new instance of the NServiceKit.Text.Tests.DynamicModels.DataModel.ObjectGraph
 /// class.
 /// </summary>
 public ObjectGraph()
 {
     internalCollection = new CustomCollection();
 }