source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.EHR/IEhrComponent.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 866 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace IndianHealthService.BMXNet.EHR
6{
7 /// <summary>
8 /// To support the HelpFile framework in the EHR menu, your component must
9 /// implement this interface.
10 /// </summary>
11 public interface IEhrComponent:IDisposable {
12
13 /// <summary>
14 /// The name of the compiled Windows help file (.chm).
15 /// </summary>
16 /// <remarks>
17 /// See the EHR/VueCentric integration partial class for details on specifying a HelpFile
18 /// </remarks>
19 String HelpFile { get; }
20
21 /// <summary>
22 /// Not currently used
23 /// </summary>
24 String HelpContext { get; }
25
26
27 /// <summary>
28 /// Not currently used
29 /// </summary>
30 String HelpString { get; }
31 }
32}
Note: See TracBrowser for help on using the repository browser.