source: Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAppointmentChangedArgs.cs@ 1731

Last change on this file since 1731 was 1068, checked in by Sam Habiel, 13 years ago

CalendarGrid:

  • Added PositionGrid from CGView
  • Added Delegates from other classes that contained just one line.

CGAppointmentChangedArgs & CGSelectionChangedArgs:

  • Changed to use automatic properties

CGAvailability:

File size: 725 bytes
Line 
1namespace IndianHealthService.ClinicalScheduling
2{
3 using System;
4 /// <summary>
5 /// Custom event args for CGAppointment events when changing appointments.
6 /// More documentation when I totally understand it.
7 /// I changed it to automatic properties.
8 /// </summary>
9 [Serializable]
10 public class CGAppointmentChangedArgs : EventArgs
11 {
12 public int AccessTypeID {get; set;}
13
14 public CGAppointment Appointment {get; set;}
15
16 public DateTime EndTime {get; set;}
17
18 public string OldResource {get; set;}
19
20 public string Resource {get; set;}
21
22 public int Slots {get; set;}
23
24 public DateTime StartTime {get; set;}
25 }
26}
27
Note: See TracBrowser for help on using the repository browser.