This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ICursorView : IBaseView { }
}

View File

@@ -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

View File

@@ -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; }
}
}

View File

@@ -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

View File

@@ -0,0 +1,9 @@
using Microsoft.Practices.Prism.Regions;
namespace DTS.Common.Dialogs
{
public interface IRegionManagerAware
{
IRegionManager RegionManager { get; set; }
}
}

View File

@@ -0,0 +1,7 @@
using Microsoft.Practices.Prism.Events;
// ReSharper disable CheckNamespace
namespace DTS.Common.Events
{
public class CalibrationBehaviorSettableInViewerChangedEvent : CompositePresentationEvent<bool> { }
}