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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpoer.AddttblpoerRow((pdspoerDataSet.ttblpoerRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpoer.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoer.Rows[0]) : null);
        }
Exemple #3
0
        public Poer GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Poer poer = null;

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

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

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