Esempio n. 1
0
        public DrugInDepartment GetObjectByKey(object keypair)
        {
            if (this.Contains(GetKey(keypair)) == false)
            {
                return(null);
            }
            DrugInDepartment ob = this[GetKey(keypair)];

            return((DrugInDepartment)ob);
        }
Esempio n. 2
0
        public DrugInDepartment GetObjectByKey(long k_DrugDepID)
        {
            if (this.Contains(GetKey(k_DrugDepID)) == false)
            {
                return(null);
            }
            DrugInDepartment ob = this[GetKey(k_DrugDepID)];

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

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

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

                return(true);
            }

            return(false);
        }
Esempio n. 5
0
        public DrugInDepartment GetObjectByKey(long k_DrugDepID, LV.Core.DAL.Base.IRepository repository)
        {
            if (this.Contains(GetKey(k_DrugDepID)) == false)
            {
                DrugInDepartment ob = repository.GetQuery <DrugInDepartment>().FirstOrDefault(o => o.DrugDepID == k_DrugDepID);
                if (ob != null)
                {
                    this.Add(ob);
                }
                return(ob);
            }
            DrugInDepartment obj = this[GetKey(k_DrugDepID)];

            return((DrugInDepartment)obj);
        }
Esempio n. 6
0
        public bool DeleteObject(DrugInDepartment item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Update(item);

            return(true);
        }
Esempio n. 7
0
        public bool AddObject(DrugInDepartment item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Add(item);

            return(true);
        }
Esempio n. 8
0
 protected override KeyValuePair <string, long> GetKeyForItem(DrugInDepartment item)
 {
     return(item.Key);
 }