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

            return((DrugPrice)ob);
        }
Example #2
0
        public DrugPrice GetObjectByKey(long k_DrugPriceID)
        {
            if (this.Contains(GetKey(k_DrugPriceID)) == false)
            {
                return(null);
            }
            DrugPrice ob = this[GetKey(k_DrugPriceID)];

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

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

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

                return(true);
            }

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

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

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

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