예제 #1
0
        public Realms GetObjectByKey(KeyValuePair <string, long> keypair)
        {
            if (this.Contains(keypair) == false)
            {
                return(null);
            }
            Realms ob = this[keypair];

            return((Realms)ob);
        }
예제 #2
0
        public Realms GetObjectByKey(object keypair)
        {
            if (this.Contains(GetKey(keypair)) == false)
            {
                return(null);
            }
            Realms ob = this[GetKey(keypair)];

            return((Realms)ob);
        }
예제 #3
0
        public Realms GetObjectByKey(long k_RealmID)
        {
            if (this.Contains(GetKey(k_RealmID)) == false)
            {
                return(null);
            }
            Realms ob = this[GetKey(k_RealmID)];

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

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

                return(true);
            }

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

            return((Realms)obj);
        }
예제 #6
0
 protected override KeyValuePair <string, long> GetKeyForItem(Realms item)
 {
     return(item.Key);
 }
예제 #7
0
        public bool DeleteObject(Realms item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Update(item);

            return(true);
        }
예제 #8
0
        public bool AddObject(Realms item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Add(item);

            return(true);
        }