/* * Test.Module.IConvertable.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DTS.Serialization { // *** see Test.cs *** public partial class Test { // *** see Test.Module.cs *** public partial class Module { /// /// An object that expresses this interface can convert itself to and from a /// object. /// /// public interface IConvertable { /// /// Convert this object to a . /// /// /// /// The that contains the afixed object. /// /// /// /// The equivalent of this object. /// /// Test.Module ToDtsSerializationTestModule( DTS.Serialization.Test parentTest ); /// /// Initialize this object using the specified . /// /// /// /// The with which this object will be initialized from. /// /// void FromDtsSerializationTestModule( Test.Module testModule, DTS.Serialization.Test.ReportErrors reportErrors ); } } } }