Ejemplo n.º 1
0
        public Poeh BuildFromRow(DataRow row)
        {
            var returnRecord = Poeh.BuildPoehFromRow(row);

            returnRecord = this.BuildExtraFromRow <Poeh>(returnRecord, row);
            return(returnRecord);
        }
Ejemplo n.º 2
0
        public Poeh Insert(Poeh record)
        {
            DataRow row = this.dataSet.ttblpoeh.NewttblpoehRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpoeh.AddttblpoehRow((pdspoehDataSet.ttblpoehRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpoeh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoeh.Rows[0]) : null);
        }
Ejemplo n.º 3
0
        public Poeh GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Poeh poeh = null;

            if (row != null)
            {
                poeh = this.BuildFromRow(row);
            }
            return(poeh);
        }
Ejemplo n.º 4
0
        protected Poeh Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var  row  = this.dataSet.ttblpoeh.AsEnumerable().SingleOrDefault();
            Poeh poeh = null;

            if (row != null)
            {
                poeh = this.BuildFromRow(row);
            }
            return(poeh);
        }
Ejemplo n.º 5
0
        private void DeleteUseRowID(Poeh record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblpoeh.NewttblpoehRow();
                Poeh.BuildMinimalRow(ref row, record);
                this.dataSet.ttblpoeh.AddttblpoehRow((pdspoehDataSet.ttblpoehRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Ejemplo n.º 6
0
        public Poeh Update(Poeh 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.ttblpoeh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpoeh.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Ejemplo n.º 7
0
 public void UpdateToRow(ref DataRow row, Poeh record)
 {
     Poeh.UpdateRowFromPoeh(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Ejemplo n.º 8
0
 public void Delete(Poeh record)
 {
     this.adapter.Delete(record);
 }
Ejemplo n.º 9
0
 public Poeh Update(Poeh record)
 {
     return(this.adapter.Update(record));
 }
Ejemplo n.º 10
0
 public Poeh Insert(Poeh record)
 {
     return(this.adapter.Insert(record));
 }
Ejemplo n.º 11
0
 public void Delete(Poeh record)
 {
     this.repository.Delete(record);
 }
Ejemplo n.º 12
0
 public Poeh Update(Poeh record)
 {
     return(this.repository.Update(record));
 }
Ejemplo n.º 13
0
 public Poeh Insert(Poeh record)
 {
     return(this.repository.Insert(record));
 }