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 CGAppointment events when changing appointments.
|
|
|
|
|
/// More documentation when I totally understand it.
|
|
|
|
|
/// I changed it to automatic properties.
|
2009-12-03 17:36:03 -05:00
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class CGAppointmentChangedArgs : EventArgs
|
|
|
|
|
{
|
2011-01-17 09:12:38 -05:00
|
|
|
|
public int AccessTypeID {get; set;}
|
2009-12-03 17:36:03 -05:00
|
|
|
|
|
2011-01-17 09:12:38 -05:00
|
|
|
|
public CGAppointment Appointment {get; set;}
|
2009-12-03 17:36:03 -05:00
|
|
|
|
|
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 OldResource {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 int Slots {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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|