common/CordonelPreadjustmentUi/Processes/IProcess.cs
2026-04-23 17:50:07 +02:00

15 lines
402 B
C#

using CordonelPreadjustmentUi.Processes.Itinerary;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xylem.Common.Ui.CordonelPreadjustmentUi;
namespace CordonelPreadjustmentUi.Processes
{
interface IProcess
{
ProcessProgress StartProcess(ProcessProgress pp,List<MeterStateControl> MeterCtsl, List<MeterStateControl> TempMeterCtls);
}
}