Exemple #1
0
        public PvPdmline BuildFromRow(DataRow row)
        {
            var returnRecord = PvPdmline.BuildPvPdmlineFromRow(row);

            returnRecord = this.BuildExtraFromRow <PvPdmline>(returnRecord, row);
            return(returnRecord);
        }
Exemple #2
0
        public PvPdmline Insert(PvPdmline record)
        {
            DataRow row = this.dataSet.ttblpv_pdmline.Newttblpv_pdmlineRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpv_pdmline.Addttblpv_pdmlineRow((pdspv_pdmlineDataSet.ttblpv_pdmlineRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpv_pdmline.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdmline.Rows[0]) : null);
        }
Exemple #3
0
        public PvPdmline GetByRowId(string rowId, string fldList)
        {
            var       row       = this.GetRowByRowId(rowId, fldList);
            PvPdmline pvPdmline = null;

            if (row != null)
            {
                pvPdmline = this.BuildFromRow(row);
            }
            return(pvPdmline);
        }
Exemple #4
0
        protected PvPdmline Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var       row       = this.dataSet.ttblpv_pdmline.AsEnumerable().SingleOrDefault();
            PvPdmline pvPdmline = null;

            if (row != null)
            {
                pvPdmline = this.BuildFromRow(row);
            }
            return(pvPdmline);
        }
Exemple #5
0
        public void Delete(PvPdmline record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblpv_pdmline.Newttblpv_pdmlineRow();
                PvPdmline.BuildMinimalRow(ref row, record);
                this.dataSet.ttblpv_pdmline.Addttblpv_pdmlineRow((pdspv_pdmlineDataSet.ttblpv_pdmlineRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemple #6
0
        public PvPdmline Update(PvPdmline 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_pdmline.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdmline.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Exemple #7
0
 public void UpdateToRow(ref DataRow row, PvPdmline record)
 {
     PvPdmline.UpdateRowFromPvPdmline(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Exemple #8
0
 public void Delete(PvPdmline record)
 {
     this.repository.Delete(record);
 }
Exemple #9
0
 public PvPdmline Update(PvPdmline record)
 {
     return(this.repository.Update(record));
 }
Exemple #10
0
 public PvPdmline Insert(PvPdmline record)
 {
     return(this.repository.Insert(record));
 }
Exemple #11
0
 public void Delete(PvPdmline record)
 {
     this.adapter.Delete(record);
 }
Exemple #12
0
 public PvPdmline Update(PvPdmline record)
 {
     return(this.adapter.Update(record));
 }
Exemple #13
0
 public PvPdmline Insert(PvPdmline record)
 {
     return(this.adapter.Insert(record));
 }