Last change
on this file since 1675 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:
473 bytes
|
Rev | Line | |
---|
[622] | 1 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 2 | {
|
---|
| 3 | using System;
|
---|
| 4 | /// <summary>
|
---|
[1068] | 5 | /// Custom Event Args for SelectionChange. Don't know totally what it does yet.
|
---|
| 6 | /// Changed to automatic properties.
|
---|
[622] | 7 | /// </summary>
|
---|
| 8 | [Serializable]
|
---|
| 9 | public class CGSelectionChangedArgs : EventArgs
|
---|
| 10 | {
|
---|
[1068] | 11 | public DateTime EndTime {get; set;}
|
---|
[622] | 12 |
|
---|
[1068] | 13 | public string Resource {get; set;}
|
---|
[622] | 14 |
|
---|
[1068] | 15 | public DateTime StartTime {get; set;}
|
---|
[622] | 16 | }
|
---|
| 17 | }
|
---|
| 18 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.