2009-12-03 17:36:03 -05:00
|
|
|
|
namespace IndianHealthService.ClinicalScheduling
|
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
/// <summary>
|
2011-01-17 09:12:38 -05:00
|
|
|
|
/// Custom Event Args for SelectionChange. Don't know totally what it does yet.
|
|
|
|
|
/// Changed to automatic properties.
|
2009-12-03 17:36:03 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class CGSelectionChangedArgs : EventArgs
|
|
|
|
|
{
|
2011-01-17 09:12:38 -05:00
|
|
|
|
public DateTime EndTime {get; set;}
|
2009-12-03 17:36:03 -05:00
|
|
|
|
|
2011-01-17 09:12:38 -05:00
|
|
|
|
public string Resource {get; set;}
|
2009-12-03 17:36:03 -05:00
|
|
|
|
|
2011-01-17 09:12:38 -05:00
|
|
|
|
public DateTime StartTime {get; set;}
|
2009-12-03 17:36:03 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|