22 lines
397 B
C#
22 lines
397 B
C#
|
|
using DTS.Common.Interface;
|
|||
|
|
|
|||
|
|
namespace TTSImport
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interaction logic for ReadFileView.xaml
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class ReadFileView : IReadFileView
|
|||
|
|
{
|
|||
|
|
public ReadFileView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void Connect(int connectionId, object target)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|