18 lines
660 B
C#
18 lines
660 B
C#
|
|
namespace DTS.Common.Interface.DASFactory.Config
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Information interface for an IDASCommunication object, providing DASInfo object.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IInformation
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// DASInfo is populated with values from the hardware. It provides information
|
|||
|
|
/// about the entire DAS as well as the functions necessary to covert between
|
|||
|
|
/// Module, ModuleChannel, and DASChannel values.
|
|||
|
|
/// </summary>
|
|||
|
|
IInfoResult DASInfo { get; set; }
|
|||
|
|
void SetDASInfo(IInfoResult dasInfo, bool bSetInDb = true);
|
|||
|
|
void SetDASInfo();
|
|||
|
|
}
|
|||
|
|
}
|