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