14 lines
319 B
C#
14 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Xylem.Common.Hardware.WaterMeter.Genesis.DataPackages.MeasurementRecords;
|
|
|
|
namespace CordonelPreadjustmentUi.Watcher
|
|
{
|
|
interface IWatcherNeedCalibrationData
|
|
{
|
|
void SetData(List<CalibrationRecord> l);
|
|
}
|
|
}
|