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

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

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

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

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

                return(true);
            }

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

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

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

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