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