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