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