Ejemplo n.º 1
0
 public void Insert(
     int index,
     Annotation value
     )
 {
     BaseDataObject.Insert(index, value.BaseObject);
 }
Ejemplo n.º 2
0
 public virtual void Insert(
     int index,
     TItem item
     )
 {
     BaseDataObject.Insert(index, item.BaseObject);
 }
Ejemplo n.º 3
0
 public void Insert(
     int index,
     Function value
     )
 {
     Validate(value);
     BaseDataObject.Insert(index, value.BaseObject);
 }
Ejemplo n.º 4
0
 public void Insert(
     int index,
     ChoiceItem value
     )
 {
     BaseDataObject.Insert(index, value.BaseObject);
     value.Items = this;
 }