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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbliceav.AddttbliceavRow((pdsiceavDataSet.ttbliceavRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbliceav.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbliceav.Rows[0]) : null);
        }
示例#3
0
        public Iceav GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Iceav iceav = null;

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

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

            if (row == null)
            {
                row = this.dataSet.ttbliceav.NewttbliceavRow();
                Iceav.BuildMinimalRow(ref row, record);
                this.dataSet.ttbliceav.AddttbliceavRow((pdsiceavDataSet.ttbliceavRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
示例#6
0
        public Iceav Update(Iceav 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.ttbliceav.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbliceav.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
示例#7
0
 public void Delete(Iceav record)
 {
     this.repository.Delete(record);
 }
示例#8
0
 public Iceav Update(Iceav record)
 {
     return(this.repository.Update(record));
 }
示例#9
0
 public Iceav Insert(Iceav record)
 {
     return(this.repository.Insert(record));
 }
示例#10
0
 public void UpdateToRow(ref DataRow row, Iceav record)
 {
     Iceav.UpdateRowFromIceav(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
示例#11
0
 public void Delete(Iceav record)
 {
     this.adapter.Delete(record);
 }
示例#12
0
 public Iceav Update(Iceav record)
 {
     return(this.adapter.Update(record));
 }
示例#13
0
 public Iceav Insert(Iceav record)
 {
     return(this.adapter.Insert(record));
 }