Beispiel #1
0
        public PatientInvoices GetObjectByKey(object keypair)
        {
            if (this.Contains(GetKey(keypair)) == false)
            {
                return(null);
            }
            PatientInvoices ob = this[GetKey(keypair)];

            return((PatientInvoices)ob);
        }
Beispiel #2
0
        public PatientInvoices GetObjectByKey(long k_InvoiceID)
        {
            if (this.Contains(GetKey(k_InvoiceID)) == false)
            {
                return(null);
            }
            PatientInvoices ob = this[GetKey(k_InvoiceID)];

            return((PatientInvoices)ob);
        }
Beispiel #3
0
        public PatientInvoices GetObjectByKey(KeyValuePair <string, long> keypair)
        {
            if (this.Contains(keypair) == false)
            {
                return(null);
            }
            PatientInvoices ob = this[keypair];

            return((PatientInvoices)ob);
        }
Beispiel #4
0
        public bool ChangeItem(KeyValuePair <string, long> keypair, PatientInvoices item)
        {
            PatientInvoices orig = this.GetObjectByKey(keypair);

            if (orig != null)
            {
                int index = this.IndexOf(orig);
                this.SetItem(index, item);

                return(true);
            }

            return(false);
        }
Beispiel #5
0
        public PatientInvoices GetObjectByKey(long k_InvoiceID, LV.Core.DAL.Base.IRepository repository)
        {
            if (this.Contains(GetKey(k_InvoiceID)) == false)
            {
                PatientInvoices ob = repository.GetQuery <PatientInvoices>().FirstOrDefault(o => o.InvoiceID == k_InvoiceID);
                if (ob != null)
                {
                    this.Add(ob);
                }
                return(ob);
            }
            PatientInvoices obj = this[GetKey(k_InvoiceID)];

            return((PatientInvoices)obj);
        }
Beispiel #6
0
        public bool DeleteObject(PatientInvoices item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Update(item);

            return(true);
        }
Beispiel #7
0
        public bool AddObject(PatientInvoices item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Add(item);

            return(true);
        }
Beispiel #8
0
 protected override KeyValuePair <string, long> GetKeyForItem(PatientInvoices item)
 {
     return(item.Key);
 }