init
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface.TestSetups.Imports.TTS
|
||||
{
|
||||
public interface ITOMChannelsView : IBaseView { }
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.Hardware.HardwareList
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// The HardwareListHardwareTestSampleRateEvent event.
|
||||
/// </summary>
|
||||
///
|
||||
/// <remarks>This event is used to indicate the hardware's sample rate in this test was changed.</remarks>
|
||||
///
|
||||
public class HardwareListHardwareTestSampleRateEvent : CompositePresentationEvent<HardwareListHardwareTestSampleRateEventArgs> { }
|
||||
|
||||
public class HardwareListHardwareTestSampleRateEventArgs
|
||||
{
|
||||
public string SerialNumber { get; private set; }
|
||||
public int DASId { get; private set; }
|
||||
public double TestSampleRate { get; private set; }
|
||||
|
||||
public HardwareListHardwareTestSampleRateEventArgs(string serial, double testSampleRate, int dasId)
|
||||
{
|
||||
DASId = dasId;
|
||||
SerialNumber = serial;
|
||||
TestSampleRate = testSampleRate;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using DTS.Common.Interface.DASFactory.Diagnostics.HardwareList;
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.Hardware.HardwareList
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// The HardwareListHardwareSelectedEvent event.
|
||||
/// </summary>
|
||||
///
|
||||
/// <remarks>This event is used to indicate hardware was selected.</remarks>
|
||||
///
|
||||
public class HardwareListEditHardwareEvent : CompositePresentationEvent<string> { }
|
||||
}
|
||||
Reference in New Issue
Block a user