예제 #1
0
        public PvPdsps BuildFromRow(DataRow row)
        {
            var returnRecord = PvPdsps.BuildPvPdspsFromRow(row);

            returnRecord = this.BuildExtraFromRow <PvPdsps>(returnRecord, row);
            return(returnRecord);
        }
예제 #2
0
        public PvPdsps Insert(PvPdsps record)
        {
            DataRow row = this.dataSet.ttblpv_pdsps.Newttblpv_pdspsRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpv_pdsps.Addttblpv_pdspsRow((pdspv_pdspsDataSet.ttblpv_pdspsRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpv_pdsps.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdsps.Rows[0]) : null);
        }
예제 #3
0
        public PvPdsps GetByRowId(string rowId, string fldList)
        {
            var     row     = this.GetRowByRowId(rowId, fldList);
            PvPdsps pvPdsps = null;

            if (row != null)
            {
                pvPdsps = this.BuildFromRow(row);
            }
            return(pvPdsps);
        }
예제 #4
0
        protected PvPdsps Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var     row     = this.dataSet.ttblpv_pdsps.AsEnumerable().SingleOrDefault();
            PvPdsps pvPdsps = null;

            if (row != null)
            {
                pvPdsps = this.BuildFromRow(row);
            }
            return(pvPdsps);
        }
예제 #5
0
        public void Delete(PvPdsps record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblpv_pdsps.Newttblpv_pdspsRow();
                PvPdsps.BuildMinimalRow(ref row, record);
                this.dataSet.ttblpv_pdsps.Addttblpv_pdspsRow((pdspv_pdspsDataSet.ttblpv_pdspsRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
예제 #6
0
        public PvPdsps Update(PvPdsps 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_pdsps.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_pdsps.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
예제 #7
0
 public void Delete(PvPdsps record)
 {
     this.repository.Delete(record);
 }
예제 #8
0
 public PvPdsps Update(PvPdsps record)
 {
     return(this.repository.Update(record));
 }
예제 #9
0
 public PvPdsps Insert(PvPdsps record)
 {
     return(this.repository.Insert(record));
 }
예제 #10
0
 public void UpdateToRow(ref DataRow row, PvPdsps record)
 {
     PvPdsps.UpdateRowFromPvPdsps(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
예제 #11
0
 public void Delete(PvPdsps record)
 {
     this.adapter.Delete(record);
 }
예제 #12
0
 public PvPdsps Update(PvPdsps record)
 {
     return(this.adapter.Update(record));
 }
예제 #13
0
 public PvPdsps Insert(PvPdsps record)
 {
     return(this.adapter.Insert(record));
 }