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,14 @@
using DTS.Common.Interface.GroupTemplate;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events.GroupTemplates.TemplateChannelList
{
/// <summary>
/// The GroupTemplateListGroupTemplateSelectedEvent event.
/// </summary>
///
/// <remarks>called when a template is selected.</remarks>
///
public class TemplateChannelListSelectionChangedEvent : CompositePresentationEvent<IGroupTemplateChannel> { }
}

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DTS.Common.Interface.TestSetups
{
/// <summary>
/// Describes a record in the ROIPeriodChannels table
/// </summary>
public interface IROIPeriodChannelRecord
{
int TestSetupROIId { get; set; }
string ChannelName { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System;
namespace DTS.Common.Interface.GroupTemplate
{
public interface IGroupTemplate
{
bool Disabled { get; set; }
string Name { get; set; }
string Description { get; set; }
string Channels { get; set; }
string AssociatedGroups { get; set; }
string LastModifiedBy { get; set; }
DateTime LastModified { get; set; }
string SerialNumber { get; set; }
bool Filter(string term);
}
}

View File

@@ -0,0 +1,16 @@
using DTS.Common.Base;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
public class GraphChannelReadCalcProgressChangedEvent : CompositePresentationEvent<GraphChannelReadCalcProgressChangedEventArgs> { }
public class GraphChannelReadCalcProgressChangedEventArgs
{
public string ProgressMessage { get; set; }
public double ProgressPercent { get; set; }
public IBaseViewModel GraphVM { get; set; }
}
}

View File

@@ -0,0 +1,15 @@
using DTS.Common.Interface.DASFactory.Diagnostics.HardwareList;
using Microsoft.Practices.Prism.Events;
using System;
namespace DTS.Common.Events.Hardware.HardwareList
{
/// <summary>
/// The HardwareReplaceEvent event.
/// </summary>
///
/// <remarks>This event is used to indicate hardware replacement was requested
/// </remarks>
public class HardwareReplaceEvent : CompositePresentationEvent<Tuple<IHardware, IHardware>> { }
}

View File

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