Beispiel #1
0
        public BedInRoom GetObjectByKey(object keypair)
        {
            if (this.Contains(GetKey(keypair)) == false)
            {
                return(null);
            }
            BedInRoom ob = this[GetKey(keypair)];

            return((BedInRoom)ob);
        }
Beispiel #2
0
        public BedInRoom GetObjectByKey(long k_PtBdRmID)
        {
            if (this.Contains(GetKey(k_PtBdRmID)) == false)
            {
                return(null);
            }
            BedInRoom ob = this[GetKey(k_PtBdRmID)];

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

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

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

                return(true);
            }

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

            return((BedInRoom)obj);
        }
Beispiel #6
0
        public bool DeleteObject(BedInRoom item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Update(item);

            return(true);
        }
Beispiel #7
0
        public bool AddObject(BedInRoom item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Add(item);

            return(true);
        }
Beispiel #8
0
 protected override KeyValuePair <string, long> GetKeyForItem(BedInRoom item)
 {
     return(item.Key);
 }