BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
var CustomAPP = GetCustomAppointment(schedule.Appointments[0]);
>>>>>>>>>>>>>>>>>>>>
CustomAppointment GetCustomAppointment(ScheduleAppointment app)
{
CustomAppointment CustomApp = new CustomAppointment();
CustomApp.Name = app.Subject;
CustomApp.Locaion = app.Location;
CustomApp.AppointmentStartTime = app.StartTime;
CustomApp.AppointmentEndTime = app.EndTime;
return CustomApp;
} |
foreach(CustomAppointment CustomApponitment in Source)
{
if(app.ObjectID== CustomApponitment.GetHashCode())
{
CustomApp.Appointment_ID = CustomApponitment.Appointment_ID;
}
} |