common/CordonelPreadjustmentUi/Processes/IProcess.cs

15 lines
402 B
C#
Raw Normal View History

2026-04-23 15:50:07 +00:00
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);
}
}