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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpv_pdmhdr.Addttblpv_pdmhdrRow((pdspv_pdmhdrDataSet.ttblpv_pdmhdrRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpv_pdmhdr.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdmhdr.Rows[0]) : null);
        }
示例#3
0
        public PvPdmhdr GetByRowId(string rowId, string fldList)
        {
            var      row      = this.GetRowByRowId(rowId, fldList);
            PvPdmhdr pvPdmhdr = null;

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

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

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