source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.EHR/IEhrEvents.cs@ 1193

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

Initial Import of BMX4

File size: 897 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using IndianHealthService.BMXNet.Model;
5
6
7namespace IndianHealthService.BMXNet.EHR
8{
9 /// <summary>
10 /// This interface is used to route EHR events to the common BMX context module.
11 /// </summary>
12 /// <remarks>
13 /// This interface is used by the EHR/VueCentric integration partial class, there is not need for
14 /// BMX developers to directly use this interface
15 /// </remarks>
16 public interface IEhrEvents
17 {
18 /// <summary>
19 /// This event is used internally by the EhrFramework
20 /// </summary>
21 event EventHandler<ContextChangedArgs> ContextChanged;
22
23 /// <summary>
24 /// This event is used internally by the EhrFramework
25 /// </summary>
26 event EventHandler<ContextChangingArgs> ContextChanging;
27 }
28}
Note: See TracBrowser for help on using the repository browser.