Skip to main content

IAppointmentDependencyFactory Interface

Provides methods for creating appointment dependencies.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

public interface IAppointmentDependencyFactory

Remarks

The IAppointmentDependencyFactory interface declares the IAppointmentDependencyFactory.CreateAppointmentDependency method, which defines a way of creating appointment dependencies. To specify a custom way of creating appointments using the SchedulerStorage, implement this method and call the SchedulerStorageBase.SetAppointmentDependencyFactory method to assign a new factory to the Scheduler Storage.

Subsequently, the Scheduler Storage will use this factory when creating an appointment dependency using its SchedulerStorageBase.CreateAppointmentDependency method.

See Also