Click or drag to resize
WebServiceAppointmentControllerInsertAppointment Method (ISchedulerInfo, AppointmentData)
Inserts the specified appointment and returns the available appointments.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public IEnumerable<AppointmentData> InsertAppointment(
	ISchedulerInfo schedulerInfo,
	AppointmentData appointmentData
)

Parameters

schedulerInfo
Type: Kettic.AspNet.ControlsISchedulerInfo
A ISchedulerInfo object which contains the current time period.
appointmentData
Type: Kettic.AspNet.ControlsAppointmentData
A AppointmentData object which contains the appointment properties.

Return Value

Type: IEnumerableAppointmentData
Examples
[WebMethod]
public IEnumerable<AppointmentData> InsertAppointment(SchedulerInfo schedulerInfo, AppointmentData appointmentData)
{
    return Controller.InsertAppointment(schedulerInfo, appointmentData);
}
See Also