示例#1
0
        public Arbct BuildFromRow(DataRow row)
        {
            var returnRecord = Arbct.BuildArbctFromRow(row);

            returnRecord = this.BuildExtraFromRow <Arbct>(returnRecord, row);
            return(returnRecord);
        }
示例#2
0
        public Arbct Insert(Arbct record)
        {
            DataRow row = this.dataSet.ttblarbct.NewttblarbctRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblarbct.AddttblarbctRow((pdsarbctDataSet.ttblarbctRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblarbct.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblarbct.Rows[0]) : null);
        }
示例#3
0
        public Arbct GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Arbct arbct = null;

            if (row != null)
            {
                arbct = this.BuildFromRow(row);
            }
            return(arbct);
        }
示例#4
0
        protected Arbct Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblarbct.AsEnumerable().SingleOrDefault();
            Arbct arbct = null;

            if (row != null)
            {
                arbct = this.BuildFromRow(row);
            }
            return(arbct);
        }
示例#5
0
        public void Delete(Arbct record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblarbct.NewttblarbctRow();
                Arbct.BuildMinimalRow(ref row, record);
                this.dataSet.ttblarbct.AddttblarbctRow((pdsarbctDataSet.ttblarbctRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
示例#6
0
        public Arbct Update(Arbct record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttblarbct.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblarbct.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
示例#7
0
 public Arbct Insert(Arbct record)
 {
     return(this.repository.Insert(record));
 }
示例#8
0
 public void Delete(Arbct record)
 {
     this.repository.Delete(record);
 }
示例#9
0
 public Arbct Update(Arbct record)
 {
     return(this.repository.Update(record));
 }
示例#10
0
 public void Delete(Arbct record)
 {
     this.adapter.Delete(record);
 }
示例#11
0
 public Arbct Update(Arbct record)
 {
     return(this.adapter.Update(record));
 }
示例#12
0
 public Arbct Insert(Arbct record)
 {
     return(this.adapter.Insert(record));
 }
示例#13
0
 public void UpdateToRow(ref DataRow row, Arbct record)
 {
     Arbct.UpdateRowFromArbct(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }