/// <summary> /// Removes the specified listing from the cached listings. Call WriteListings to save the change to disc. /// </summary> /// <param name="aListing">The listing to remove.</param> public abstract void RemoveListing(Base aListing);
/// <summary> /// Adds the specified listing to the cached listings. Call WriteListings to save the new listing to disc. /// </summary> /// <param name="aListing">The listing to add.</param> public abstract void AddListing(Base aListing);