Last change
on this file since 1501 was 1068, checked in by Sam Habiel, 14 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
|
Rev | Line | |
---|
[622] | 1 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 2 | {
|
---|
| 3 | using System;
|
---|
| 4 | /// <summary>
|
---|
[1068] | 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.
|
---|
[622] | 8 | /// </summary>
|
---|
| 9 | [Serializable]
|
---|
| 10 | public class CGAppointmentChangedArgs : EventArgs
|
---|
| 11 | {
|
---|
[1068] | 12 | public int AccessTypeID {get; set;}
|
---|
[622] | 13 |
|
---|
[1068] | 14 | public CGAppointment Appointment {get; set;}
|
---|
[622] | 15 |
|
---|
[1068] | 16 | public DateTime EndTime {get; set;}
|
---|
[622] | 17 |
|
---|
[1068] | 18 | public string OldResource {get; set;}
|
---|
[622] | 19 |
|
---|
[1068] | 20 | public string Resource {get; set;}
|
---|
[622] | 21 |
|
---|
[1068] | 22 | public int Slots {get; set;}
|
---|
[622] | 23 |
|
---|
[1068] | 24 | public DateTime StartTime {get; set;}
|
---|
[622] | 25 | }
|
---|
| 26 | }
|
---|
| 27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.