init
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface ICursorView : IBaseView { }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface ILegendView : IBaseView { }
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 647 B |
@@ -0,0 +1,14 @@
|
||||
namespace DTS.Common.Interface.DASFactory.Diagnostics
|
||||
{
|
||||
public interface IArmCheckActions
|
||||
{
|
||||
bool PerformBatteryVoltageCheck { get; set; }
|
||||
bool PerformInputVoltageCheck { get; set; }
|
||||
bool PerformSensorIdCheck { get; set; }
|
||||
bool PerformEventLineCheck { get; set; }
|
||||
bool PerformSquibResistanceCheck { get; set; }
|
||||
bool PerformTiltSensorCheck { get; set; }
|
||||
bool PerformTemperatureCheck { get; set; }
|
||||
bool PerformClockSyncCheck { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DTS.Common.Constant.DASSpecific
|
||||
{
|
||||
public class SLICE
|
||||
{
|
||||
public const uint MaxAAFilterRateHz = 30000;
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 558 B |
@@ -0,0 +1,9 @@
|
||||
using Microsoft.Practices.Prism.Regions;
|
||||
|
||||
namespace DTS.Common.Dialogs
|
||||
{
|
||||
public interface IRegionManagerAware
|
||||
{
|
||||
IRegionManager RegionManager { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
using Microsoft.Practices.Prism.Events;
|
||||
// ReSharper disable CheckNamespace
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
public class CalibrationBehaviorSettableInViewerChangedEvent : CompositePresentationEvent<bool> { }
|
||||
}
|
||||
Reference in New Issue
Block a user