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

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

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

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

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

                return(true);
            }

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

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

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

            return(true);
        }