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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpv_poln.Addttblpv_polnRow((pdspv_polnDataSet.ttblpv_polnRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpv_poln.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_poln.Rows[0]) : null);
        }
Exemple #3
0
        public PvPoln GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            PvPoln pvPoln = null;

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

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

            if (row == null)
            {
                row = this.dataSet.ttblpv_poln.Newttblpv_polnRow();
                PvPoln.BuildMinimalRow(ref row, record);
                this.dataSet.ttblpv_poln.Addttblpv_polnRow((pdspv_polnDataSet.ttblpv_polnRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemple #6
0
        public PvPoln Update(PvPoln 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_poln.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_poln.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Exemple #7
0
 public void Delete(PvPoln record)
 {
     this.adapter.Delete(record);
 }
Exemple #8
0
 public PvPoln Update(PvPoln record)
 {
     return(this.adapter.Update(record));
 }
Exemple #9
0
 public PvPoln Insert(PvPoln record)
 {
     return(this.adapter.Insert(record));
 }
Exemple #10
0
 public void UpdateToRow(ref DataRow row, PvPoln record)
 {
     PvPoln.UpdateRowFromPvPoln(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Exemple #11
0
 public PvPoln Insert(PvPoln record)
 {
     return(this.repository.Insert(record));
 }
Exemple #12
0
 public void Delete(PvPoln record)
 {
     this.repository.Delete(record);
 }
Exemple #13
0
 public PvPoln Update(PvPoln record)
 {
     return(this.repository.Update(record));
 }