init
This commit is contained in:
@@ -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> { }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -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>> { }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
using DataPro.Common.Base;
|
||||
|
||||
namespace DataPro.Common.Interface
|
||||
{
|
||||
public interface IGroupView : IBaseView { }
|
||||
}
|
||||
Reference in New Issue
Block a user