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