20 lines
393 B
C#
20 lines
393 B
C#
///
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Config.Entities;
|
|
|
|
namespace TBF.UI.Procedures
|
|
{
|
|
public interface IProcParamsCtrl
|
|
{
|
|
IList<IParamsProvider> CmpntsParams { get; }
|
|
string Name { get; }
|
|
void Initialize();
|
|
void Unlock();
|
|
void RedrawAll();
|
|
bool UpdateAll();
|
|
}
|
|
}
|