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