Interface ISchedulerStorage<T>
Represents the inerface which all data store implementations must implement.
Inherited Members
System.Collections.Generic.ICollection<T>.Add(T)
System.Collections.Generic.ICollection<T>.Clear()
System.Collections.Generic.ICollection<T>.Contains(T)
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
System.Collections.Generic.ICollection<T>.Remove(T)
System.Collections.Generic.ICollection<T>.Count
System.Collections.Generic.ICollection<T>.IsReadOnly
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public interface ISchedulerStorage<T> : ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
T
|
Methods
GetById(Object)
Gets the item with the specified ID.
Declaration
T GetById(object id)
Parameters
System.Object
id
The ID of the item to get. |
Returns
T
The item with the specified ID. |