Example #1
0
 void ICatalogStore.AddItem(ICatalogStoreItem item)
 {
     this.AddItem((SqliteCatalogStoreItem)item);
 }
Example #2
0
 void ICatalogStore.RemoveItem(ICatalogStoreItem item)
 {
     this.RemoveItem((SqliteCatalogStoreItem)item);
 }
 internal void Remove( ICatalogStoreItem value )
 {
     List.Remove( value );
 }
 internal void Insert( int index, ICatalogStoreItem value )
 {
     List.Insert( index, value );
 }
 internal int Add( ICatalogStoreItem value )
 {
     return( List.Add( value ) );
 }
 public int IndexOf( ICatalogStoreItem value )
 {
     return( List.IndexOf( value ) );
 }
 public bool Contains( ICatalogStoreItem value )
 {
     // If value is not of type ICatalogStoreItem, this will return false.
     return( List.Contains( value ) );
 }