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