source: Scheduling/trunk/cs/bsdx0200GUISourceCode/CGSelectionChangedArgs.cs@ 622

Last change on this file since 622 was 622, checked in by Sam Habiel, 14 years ago

This update does the following:

File size: 1.1 KB
Line 
1namespace IndianHealthService.ClinicalScheduling
2{
3 using System;
4 /// <summary>
5 /// This class was regenerated from Calendargrid.dll using Reflector.exe
6 /// by Sam Habiel for WorldVista. The original source code is lost.
7 /// </summary>
8 [Serializable]
9 public class CGSelectionChangedArgs : EventArgs
10 {
11 private DateTime m_dEnd;
12 private DateTime m_dStart;
13 private string m_sResource;
14
15 public DateTime EndTime
16 {
17 get
18 {
19 return this.m_dEnd;
20 }
21 set
22 {
23 this.m_dEnd = value;
24 }
25 }
26
27 public string Resource
28 {
29 get
30 {
31 return this.m_sResource;
32 }
33 set
34 {
35 this.m_sResource = value;
36 }
37 }
38
39 public DateTime StartTime
40 {
41 get
42 {
43 return this.m_dStart;
44 }
45 set
46 {
47 this.m_dStart = value;
48 }
49 }
50 }
51}
52
Note: See TracBrowser for help on using the repository browser.