/*
* Test.Module.Channel.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
{
// *** see Test.Module.Channel.cs ***
public partial class Channel
{
///
/// An object that expresses this interface can convert itself to and from a
/// object.
///
///
public interface IConvertable
{
///
/// Convert this object to a .
///
///
///
/// The equivalent of this object.
///
///
Test.Module.Channel ToDtsSerializationTestModuleChannel( );
///
/// Initialize this object using the specified .
///
///
///
/// The with which this object will be
/// initialized from.
///
///
void FromDtsSerializationTestModuleChannel( Test.Module.Channel channel);
}
}
}
}
}