using System;
using System.Collections.Generic;
using System.Text;
namespace IndianHealthService.BMXNet.EHR
{
///
/// To support the HelpFile framework in the EHR menu, your component must
/// implement this interface.
///
public interface IEhrComponent:IDisposable {
///
/// The name of the compiled Windows help file (.chm).
///
///
/// See the EHR/VueCentric integration partial class for details on specifying a HelpFile
///
String HelpFile { get; }
///
/// Not currently used
///
String HelpContext { get; }
///
/// Not currently used
///
String HelpString { get; }
}
}