public void Kill() { MarketInterface.Exec("DELETE FROM BitCategory WHERE ID=?", new object[] { Index }); Index = _parentID = -1; _name = null; _parent = null; }
public void Kill() { MarketInterface.Exec("DELETE FROM BitOffer WHERE ID=?", new object[] { Index }); _stock = _category = Index = -1; _pricemap = _files = _address = _description = _title = null; _lastModify = DateTime.Now; }
public void Kill() { if (Index >= 0) { MarketInterface.Exec("DELETE FROM BitFile WHERE ID=?", new object[] { Index }); if (File.Exists(vName)) { File.Delete(vName); } } Index = -1; }