コード例 #1
0
        public ExamMaintenanceHistory GetObjectByKey(object keypair)
        {
            if (this.Contains(GetKey(keypair)) == false)
            {
                return(null);
            }
            ExamMaintenanceHistory ob = this[GetKey(keypair)];

            return((ExamMaintenanceHistory)ob);
        }
コード例 #2
0
        public ExamMaintenanceHistory GetObjectByKey(long k_MEHisCode)
        {
            if (this.Contains(GetKey(k_MEHisCode)) == false)
            {
                return(null);
            }
            ExamMaintenanceHistory ob = this[GetKey(k_MEHisCode)];

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

            return((ExamMaintenanceHistory)ob);
        }
コード例 #4
0
        public bool ChangeItem(KeyValuePair <string, long> keypair, ExamMaintenanceHistory item)
        {
            ExamMaintenanceHistory orig = this.GetObjectByKey(keypair);

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

                return(true);
            }

            return(false);
        }
コード例 #5
0
        public ExamMaintenanceHistory GetObjectByKey(long k_MEHisCode, LV.Core.DAL.Base.IRepository repository)
        {
            if (this.Contains(GetKey(k_MEHisCode)) == false)
            {
                ExamMaintenanceHistory ob = repository.GetQuery <ExamMaintenanceHistory>().FirstOrDefault(o => o.MEHisCode == k_MEHisCode);
                if (ob != null)
                {
                    this.Add(ob);
                }
                return(ob);
            }
            ExamMaintenanceHistory obj = this[GetKey(k_MEHisCode)];

            return((ExamMaintenanceHistory)obj);
        }
コード例 #6
0
        public bool DeleteObject(ExamMaintenanceHistory item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Update(item);

            return(true);
        }
コード例 #7
0
        public bool AddObject(ExamMaintenanceHistory item, LV.Core.DAL.Base.IRepository repository)
        {
            repository.Add(item);

            return(true);
        }
コード例 #8
0
 protected override KeyValuePair <string, long> GetKeyForItem(ExamMaintenanceHistory item)
 {
     return(item.Key);
 }