WebServiceAppointmentControllerAppointmentFactory Property |
A factory for appointment instances.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic IAppointmentFactory AppointmentFactory { get; set; }
Public Property AppointmentFactory As IAppointmentFactory
Get
Set
public:
property IAppointmentFactory^ AppointmentFactory {
IAppointmentFactory^ get ();
void set (IAppointmentFactory^ value);
}
member AppointmentFactory : IAppointmentFactory with get, set
Property Value
Type:
IAppointmentFactory
Remarks
The default factory returns instances of the
Appointment class.
WebServiceAppointmentController needs to create appointment instances
before passing them to the provider. You can use custom appointment
classes by implementing an IAppointmentFactory and setting this property.
See Also