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

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

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

            return((MedRecTmp)ob);
        }
Esempio n. 4
0
        public bool ChangeItem(KeyValuePair <string, long> keypair, MedRecTmp item)
        {
            MedRecTmp 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 MedRecTmp GetObjectByKey(long k_MDTmpID, LV.Core.DAL.Base.IRepository repository)
        {
            if (this.Contains(GetKey(k_MDTmpID)) == false)
            {
                MedRecTmp ob = repository.GetQuery <MedRecTmp>().FirstOrDefault(o => o.MDTmpID == k_MDTmpID);
                if (ob != null)
                {
                    this.Add(ob);
                }
                return(ob);
            }
            MedRecTmp obj = this[GetKey(k_MDTmpID)];

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

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

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