init
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 368 B |
@@ -0,0 +1,11 @@
|
||||
namespace DTS.Common.Enums.Sensors
|
||||
{
|
||||
public enum SensorStatus
|
||||
{
|
||||
Available,
|
||||
InUse,
|
||||
OutForService,
|
||||
OutForCalibration,
|
||||
Retired
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using DTS.Common.Interface.DataRecorders;
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// The TTSImportHardwareScanFinishedEvent event.
|
||||
/// </summary>
|
||||
///
|
||||
/// <remarks>This event is used by the page to tell the Hardware Scan view model to update the list of DAS.</remarks>
|
||||
///
|
||||
public class TTSImportHardwareScanFinishedEvent : PubSubEvent<List<IDASHardware>> { }
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DTS.Common.Interface.DASFactory
|
||||
{
|
||||
/// <summary>
|
||||
/// describes the argument to configuration events
|
||||
/// 17872 Use DASConfig XMLs on disk when performing an emergency download with DAS that have blank filestore(s)
|
||||
/// </summary>
|
||||
public interface IDASConfigurationArg
|
||||
{
|
||||
IDASCommunication DAS { get; }
|
||||
bool BlankConfigurationRead { get; }
|
||||
bool ConfigurationFailedValidation { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user