2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IBalance2 : IBalance, IComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Events: Done, Error
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="serialNumber">Reference to the serialNumber</param>
|
|
|
|
|
|
/// <returns>GetBalanceSNOp instance reference casted to IOperaton</returns>
|
|
|
|
|
|
IOperation GetBalanceSNOp(ref string serialNumber);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|