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