init
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 484 B |
@@ -0,0 +1,15 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface.Sensors.SensorsList
|
||||
{
|
||||
public interface ISensorsListEditGroupView : IBaseView
|
||||
{
|
||||
/// <summary>
|
||||
/// handles adding/removing columns done before view is displayed
|
||||
/// 13065 Sensor "First Use" Date
|
||||
/// </summary>
|
||||
void HandleColumns();
|
||||
void HandleAssemblyVisibilityColumns(bool bDontAllowDataCollectionIfOverused);
|
||||
void HandleInspectBeforeUseVisibilityColumn(bool show);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface ITestsViewModel : IBaseViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the Tests View.
|
||||
/// </summary>
|
||||
ITestsView View { get; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
namespace DTS.Common.Enums.Hardware
|
||||
{
|
||||
public enum HardwareListTags
|
||||
{
|
||||
Included,
|
||||
SerialNumber,
|
||||
HardwareType,
|
||||
ChannelCount,
|
||||
Firmware,
|
||||
MaxSampleRate,
|
||||
TestSampleRate,
|
||||
DSPStreamingFilter,
|
||||
CalDate,
|
||||
CalDueDate,
|
||||
IPAddress,
|
||||
FirstUseDate
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using DTS.Common.Enums.DASFactory;
|
||||
|
||||
namespace DTS.Common.Interface.DASFactory
|
||||
{
|
||||
public interface IAutoArmStatus
|
||||
{
|
||||
DFConstantsAndEnums.CommandStatus AutoArmStatus { get; set; }
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user