Пример #1
0
        public DrAdviceTmp GetObjectByKey(object keypair)
        {
            if (this.Contains(GetKey(keypair)) == false)
            {
                return(null);
            }
            DrAdviceTmp ob = this[GetKey(keypair)];

            return((DrAdviceTmp)ob);
        }
Пример #2
0
        public DrAdviceTmp GetObjectByKey(long k_DrAdvTmpID)
        {
            if (this.Contains(GetKey(k_DrAdvTmpID)) == false)
            {
                return(null);
            }
            DrAdviceTmp ob = this[GetKey(k_DrAdvTmpID)];

            return((DrAdviceTmp)ob);
        }
Пример #3
0
        public DrAdviceTmp GetObjectByKey(KeyValuePair <string, long> keypair)
        {
            if (this.Contains(keypair) == false)
            {
                return(null);
            }
            DrAdviceTmp ob = this[keypair];

            return((DrAdviceTmp)ob);
        }
Пример #4
0
        public bool ChangeItem(KeyValuePair <string, long> keypair, DrAdviceTmp item)
        {
            DrAdviceTmp orig = this.GetObjectByKey(keypair);

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

                return(true);
            }

            return(false);
        }
Пример #5
0
        public DrAdviceTmp GetObjectByKey(long k_DrAdvTmpID, LV.Core.DAL.Base.IRepository repository)
        {
            if (this.Contains(GetKey(k_DrAdvTmpID)) == false)
            {
                DrAdviceTmp ob = repository.GetQuery <DrAdviceTmp>().FirstOrDefault(o => o.DrAdvTmpID == k_DrAdvTmpID);
                if (ob != null)
                {
                    this.Add(ob);
                }
                return(ob);
            }
            DrAdviceTmp obj = this[GetKey(k_DrAdvTmpID)];

            return((DrAdviceTmp)obj);
        }
Пример #6
0
        public bool DeleteObject(DrAdviceTmp item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Update(item);

            return(true);
        }
Пример #7
0
        public bool AddObject(DrAdviceTmp item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Add(item);

            return(true);
        }
Пример #8
0
 protected override KeyValuePair <string, long> GetKeyForItem(DrAdviceTmp item)
 {
     return(item.Key);
 }