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