19 lines
504 B
C#
19 lines
504 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TBF.UiControls
|
|
{
|
|
interface IMetrologyDlgTab : ITabWithListViewEx
|
|
{
|
|
/// <summary>
|
|
/// Component entity that has a list of 'measurement-correction' pairs
|
|
/// to be updated in the database on OK.
|
|
/// </summary>
|
|
Entities.Component MeterEntity { get; set; }
|
|
|
|
/// <summary>
|
|
/// A list of 'measurement-correction' pairs to be deleted from the database on OK.
|
|
/// </summary>
|
|
IList<Entities.MeasurementCorrection> ToBeRemoved { get; set; }
|
|
}
|
|
}
|