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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpoerah.AddttblpoerahRow((pdspoerahDataSet.ttblpoerahRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpoerah.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoerah.Rows[0]) : null);
        }
示例#3
0
        public Poerah GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Poerah poerah = null;

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

            if (row != null)
            {
                poerah = this.BuildFromRow(row);
            }
            return(poerah);
        }
示例#5
0
        private void DeleteUseRowID(Poerah record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblpoerah.NewttblpoerahRow();
                Poerah.BuildMinimalRow(ref row, record);
                this.dataSet.ttblpoerah.AddttblpoerahRow((pdspoerahDataSet.ttblpoerahRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
示例#6
0
        public Poerah Update(Poerah record)
        {
            var row = this.GetRowByRowpointer(record.rowpointer, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttblpoerah.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoerah.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
示例#7
0
 public void Delete(Poerah record)
 {
     this.repository.Delete(record);
 }
示例#8
0
 public Poerah Update(Poerah record)
 {
     return(this.repository.Update(record));
 }
示例#9
0
 public Poerah Insert(Poerah record)
 {
     return(this.repository.Insert(record));
 }
示例#10
0
 public Poerah Update(Poerah record)
 {
     return(this.adapter.Update(record));
 }
示例#11
0
 public Poerah Insert(Poerah record)
 {
     return(this.adapter.Insert(record));
 }
示例#12
0
 public void Delete(Poerah record)
 {
     this.adapter.Delete(record);
 }
示例#13
0
 public void UpdateToRow(ref DataRow row, Poerah record)
 {
     Poerah.UpdateRowFromPoerah(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }