source: Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAppointmentChangedArgs.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: 2.2 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 CGAppointmentChangedArgs : EventArgs
10 {
11 private DateTime m_dEnd;
12 private DateTime m_dStart;
13 private int m_nAccessTypeID;
14 private int m_nSlots;
15 private CGAppointment m_pAppt;
16 private string m_sOldResource;
17 private string m_sResource;
18
19 public int AccessTypeID
20 {
21 get
22 {
23 return this.m_nAccessTypeID;
24 }
25 set
26 {
27 this.m_nAccessTypeID = value;
28 }
29 }
30
31 public CGAppointment Appointment
32 {
33 get
34 {
35 return this.m_pAppt;
36 }
37 set
38 {
39 this.m_pAppt = value;
40 }
41 }
42
43 public DateTime EndTime
44 {
45 get
46 {
47 return this.m_dEnd;
48 }
49 set
50 {
51 this.m_dEnd = value;
52 }
53 }
54
55 public string OldResource
56 {
57 get
58 {
59 return this.m_sOldResource;
60 }
61 set
62 {
63 this.m_sOldResource = value;
64 }
65 }
66
67 public string Resource
68 {
69 get
70 {
71 return this.m_sResource;
72 }
73 set
74 {
75 this.m_sResource = value;
76 }
77 }
78
79 public int Slots
80 {
81 get
82 {
83 return this.m_nSlots;
84 }
85 set
86 {
87 this.m_nSlots = value;
88 }
89 }
90
91 public DateTime StartTime
92 {
93 get
94 {
95 return this.m_dStart;
96 }
97 set
98 {
99 this.m_dStart = value;
100 }
101 }
102 }
103}
104
Note: See TracBrowser for help on using the repository browser.