using System;
using System.Collections.Generic;
using System.Text;
using IndianHealthService.BMXNet.Model;
namespace IndianHealthService.BMXNet.EHR
{
///
/// This interface is used to route EHR events to the common BMX context module.
///
///
/// This interface is used by the EHR/VueCentric integration partial class, there is not need for
/// BMX developers to directly use this interface
///
public interface IEhrEvents
{
///
/// This event is used internally by the EhrFramework
///
event EventHandler ContextChanged;
///
/// This event is used internally by the EhrFramework
///
event EventHandler ContextChanging;
}
}