| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Text;
|
|---|
| 4 | using IndianHealthService.BMXNet.Model;
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 | namespace 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.