public refTimeFrame GetObjectByKey(object keypair) { if (this.Contains(GetKey(keypair)) == false) { return(null); } refTimeFrame ob = this[GetKey(keypair)]; return((refTimeFrame)ob); }
public refTimeFrame GetObjectByKey(short k_TFID) { if (this.Contains(GetKey(k_TFID)) == false) { return(null); } refTimeFrame ob = this[GetKey(k_TFID)]; return((refTimeFrame)ob); }
public refTimeFrame GetObjectByKey(KeyValuePair <string, short> keypair) { if (this.Contains(keypair) == false) { return(null); } refTimeFrame ob = this[keypair]; return((refTimeFrame)ob); }
public bool ChangeItem(KeyValuePair <string, short> keypair, refTimeFrame item) { refTimeFrame orig = this.GetObjectByKey(keypair); if (orig != null) { int index = this.IndexOf(orig); this.SetItem(index, item); return(true); } return(false); }
public refTimeFrame GetObjectByKey(short k_TFID, LV.Core.DAL.Base.IRepository repository) { if (this.Contains(GetKey(k_TFID)) == false) { refTimeFrame ob = repository.GetQuery <refTimeFrame>().FirstOrDefault(o => o.TFID == k_TFID); if (ob != null) { this.Add(ob); } return(ob); } refTimeFrame obj = this[GetKey(k_TFID)]; return((refTimeFrame)obj); }
public bool DeleteObject(refTimeFrame item, LV.Core.DAL.Base.IRepository repository) { repository.Update(item); return(true); }
public bool AddObject(refTimeFrame item, LV.Core.DAL.Base.IRepository repository) { repository.Add(item); return(true); }
protected override KeyValuePair <string, short> GetKeyForItem(refTimeFrame item) { return(item.Key); }