namespace Yw.WinFrmUI
{
///
/// 设置可见工况信息控件接口
///
public interface ISetHydroWorkingVisualCtrl
{
///
/// 查看组件事件
///
event Action HydroViewEvent;
///
/// 绑定数据
///
void SetBindingData(Yw.Model.HydroVisualInfo visual, HydroWorkingVisualViewModel working = null);
///
/// 获取工况
///
HydroWorkingVisualViewModel GetWorking();
}
}