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