source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/Sevices/LocalEventService.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: 592 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace IndianHealthService.BMXNet.Services
6{
7 public interface LocalEventService
8 {
9 //Events
10 void Subscribe(String anEventName);
11 bool HasSubscribers(String anEventName);
12 void Unsubscribe(String anEventName);
13
14 event EventHandler RefreshRequested;
15 event EventHandler<LocalEventArgs> ApplicationEvent;
16
17 void TriggerEvent(String anEventName, String someDetails);
18
19 //Well-known EHR events that apply to destop too
20
21 }
22}
Note: See TracBrowser for help on using the repository browser.