/* * Test.Module.IConvertable.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ 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. /// /// Module ToDtsSerializationTestModule(Test parentTest); /// /// Initialize this object using the specified . /// /// /// /// The with which this object will be initialized from. /// /// void FromDtsSerializationTestModule(Module testModule, ReportErrors reportErrors); } } } }