using TBF.BenchControl.Generic; namespace TBF.BenchControl.GenericDevices { /// /// A pump controlled by a frequency inverter /// using the test parameter 'Power' (0 .. 100.0f %) /// public interface IPumpFM : IPump { /// /// Turns the frequency inverter on using the test parameter 'Power' (0 .. 100.0f %) /// IOperation TurnOn(); /// /// Turns the frequency inverter off /// IOperation TurnOff(); } }