init
This commit is contained in:
@@ -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,157 @@
|
||||
using DTS.Common.Interface.Channels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Data;
|
||||
|
||||
namespace DTS.Common.Classes.Channels
|
||||
{
|
||||
/// <summary>
|
||||
/// represents a record of a channel in the db
|
||||
/// <inheritdoc cref="IChannelDbRecord"/>
|
||||
/// </summary>
|
||||
public class ChannelDbRecord : Base.BasePropertyChanged, IChannelDbRecord
|
||||
{
|
||||
protected long _id = -1;
|
||||
/// <summary>
|
||||
/// The database id of the Channel
|
||||
/// </summary>
|
||||
[Key]
|
||||
public long Id
|
||||
{
|
||||
get => _id;
|
||||
set => SetProperty(ref _id, value, "Id");
|
||||
}
|
||||
|
||||
private int _groupId = -1;
|
||||
public int GroupId
|
||||
{
|
||||
get => _groupId;
|
||||
set => SetProperty(ref _groupId, value, "GroupId");
|
||||
}
|
||||
|
||||
private string _isoCode = "";
|
||||
public string IsoCode
|
||||
{
|
||||
get => _isoCode;
|
||||
set => SetProperty(ref _isoCode, value, "IsoCode");
|
||||
}
|
||||
|
||||
private string _isoChannelName = "";
|
||||
public string IsoChannelName
|
||||
{
|
||||
get => _isoChannelName;
|
||||
set => SetProperty(ref _isoChannelName, value, "IsoChannelName");
|
||||
}
|
||||
private string _userCode;
|
||||
public string UserCode
|
||||
{
|
||||
get => _userCode;
|
||||
set => SetProperty(ref _userCode, value, "UserCode");
|
||||
}
|
||||
private string _userChannelName = "";
|
||||
public string UserChannelName
|
||||
{
|
||||
get => _userChannelName;
|
||||
set => SetProperty(ref _userChannelName, value, "UserChannelName");
|
||||
}
|
||||
|
||||
private int _dasId = -1;
|
||||
public int DASId
|
||||
{
|
||||
get => _dasId;
|
||||
set => SetProperty(ref _dasId, value, "DASId");
|
||||
}
|
||||
|
||||
protected int _dasChannelIndex = -1;
|
||||
public int DASChannelIndex
|
||||
{
|
||||
get => _dasChannelIndex;
|
||||
set => SetProperty(ref _dasChannelIndex, value, "DASChannelIndex");
|
||||
}
|
||||
private int _groupChannelOrder = -1;
|
||||
public int GroupChannelOrder
|
||||
{
|
||||
get => _groupChannelOrder;
|
||||
set => SetProperty(ref _groupChannelOrder, value, "GroupChannelOrder");
|
||||
}
|
||||
private int _testSetupOrder = -1;
|
||||
public int TestSetupOrder
|
||||
{
|
||||
get => _testSetupOrder;
|
||||
set => SetProperty(ref _testSetupOrder, value, "TestSetupOrder");
|
||||
}
|
||||
|
||||
private int _sensorId = -1;
|
||||
public int SensorId
|
||||
{
|
||||
get => _sensorId;
|
||||
set => SetProperty(ref _sensorId, value, "SensorId");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// IsDisabled is declared here, and redirects to Disabled so that
|
||||
/// existing uses of IsDisabled do not need to be modified.
|
||||
/// </summary>
|
||||
|
||||
public bool IsDisabled
|
||||
{
|
||||
get => Disabled;
|
||||
set
|
||||
{
|
||||
Disabled = value;
|
||||
OnPropertyChanged("IsDisabled");
|
||||
}
|
||||
}
|
||||
public bool Disabled { get; set; }
|
||||
|
||||
private DateTime _lastModified = DateTime.Today;
|
||||
public DateTime LastModified
|
||||
{
|
||||
get => _lastModified;
|
||||
set => SetProperty(ref _lastModified, value, "LastModified");
|
||||
}
|
||||
private string _lastModifiedBy = "";
|
||||
public string LastModifiedBy
|
||||
{
|
||||
get => _lastModifiedBy;
|
||||
set => SetProperty(ref _lastModifiedBy, value, "LastModifiedBy");
|
||||
}
|
||||
|
||||
public ChannelDbRecord() { }
|
||||
public ChannelDbRecord(IChannelDbRecord copy)
|
||||
{
|
||||
Id = copy.Id;
|
||||
GroupId = copy.GroupId;
|
||||
IsoCode = copy.IsoCode;
|
||||
IsoChannelName = copy.IsoChannelName;
|
||||
UserCode = copy.UserCode;
|
||||
UserChannelName = copy.UserChannelName;
|
||||
DASId = copy.DASId;
|
||||
DASChannelIndex = copy.DASChannelIndex;
|
||||
GroupChannelOrder = copy.GroupChannelOrder;
|
||||
TestSetupOrder = copy.TestSetupOrder;
|
||||
SensorId = copy.SensorId;
|
||||
Disabled = copy.Disabled;
|
||||
LastModified = copy.LastModified;
|
||||
LastModifiedBy = copy.LastModifiedBy;
|
||||
}
|
||||
public ChannelDbRecord(IDataReader reader)
|
||||
{
|
||||
Id = Utility.GetInt(reader, "Id", -1);
|
||||
GroupId = Utility.GetInt(reader, "GroupId", -1);
|
||||
IsoCode = Utility.GetString(reader, "IsoCode");
|
||||
IsoChannelName = Utility.GetString(reader, "IsoChannelName");
|
||||
UserCode = Utility.GetString(reader, "UserCode");
|
||||
UserChannelName = Utility.GetString(reader, "UserChannelName");
|
||||
DASId = Utility.GetInt(reader, "DASId", -1);
|
||||
DASChannelIndex = Utility.GetInt(reader, "DASChannelIndex", -1);
|
||||
GroupChannelOrder = Utility.GetInt(reader, "GroupChannelOrder", -1);
|
||||
TestSetupOrder = Utility.GetInt(reader, "TestSetupOrder", -1);
|
||||
SensorId = Utility.GetInt(reader, "SensorId", -1);
|
||||
Disabled = Utility.GetBool(reader, "Disabled");
|
||||
LastModified = Utility.GetDateTime(reader, "LastModified", DateTime.MinValue);
|
||||
LastModifiedBy = Utility.GetString(reader, "LastModifiedBy");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
using DTS.Common.Enums;
|
||||
using DTS.Common.Enums.Sensors;
|
||||
using DTS.Common.Interface.Sensors.SoftwareFilters;
|
||||
using System;
|
||||
|
||||
namespace DTS.Common.Interface.Sensors
|
||||
{
|
||||
public interface ISensorAggregate
|
||||
{
|
||||
bool? IsDigitalInput();
|
||||
bool? IsDigitalOutput();
|
||||
bool? IsSquib();
|
||||
bool? IsUart();
|
||||
bool? IsStreamOutput();
|
||||
bool? IsAnalog();
|
||||
bool? IsStreamInput();
|
||||
bool? CheckOffset { get; set; }
|
||||
bool? MeasureNoise { get; set; }
|
||||
bool? MeasureExcitation { get; set; }
|
||||
bool? Invert { get; set; }
|
||||
string Model { get; set; }
|
||||
string Manufacturer { get; set; }
|
||||
string UserPartNumber { get; set; }
|
||||
double? Capacity { get; set; }
|
||||
SensorConstants.CouplingModes? CouplingMode { get; set; }
|
||||
double? OffsetToleranceLow { get; set; }
|
||||
double? OffsetToleranceHigh { get; set; }
|
||||
string DisplayUnit { get; set; }
|
||||
double? RangeLow { get; set; }
|
||||
double? RangeMedium { get; set; }
|
||||
double? RangeHigh { get; set; }
|
||||
ExcitationVoltageOptions.ExcitationVoltageOption[] SupportedExcitation { get; set; }
|
||||
SensorConstants.BridgeType? Bridge { get; set; }
|
||||
double? BridgeResistance { get; set; }
|
||||
string FilterClassIso { get; set; }
|
||||
bool? UniPolar { get; set; }
|
||||
bool? IgnoreRange { get; set; }
|
||||
string LastUpdatedBy { get; set; }
|
||||
int? Version { get; set; }
|
||||
int? CalInterval { get; set; }
|
||||
string Polarity { get; set; }
|
||||
DateTime? LastModified { get; set; }
|
||||
string UserChannelName { get; set; }
|
||||
string UserCode { get; set; }
|
||||
string ISOChannelName { get; set; }
|
||||
string ISOCode { get; set; }
|
||||
string PhysicalDimension { get; set; }
|
||||
string Direction { get; set; }
|
||||
bool? DoNotUse { get; set; }
|
||||
bool? Broken { get; set; }
|
||||
bool? OutOfDate { get; set; }
|
||||
bool? InWarningPeriod { get; set; }
|
||||
//43246
|
||||
bool? InspectBeforeUse { get; set; }
|
||||
IFilterClass Filter { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
using DataPro.Common.Base;
|
||||
|
||||
namespace DataPro.Common.Interface
|
||||
{
|
||||
public interface IGroupView : IBaseView { }
|
||||
}
|
||||
Reference in New Issue
Block a user