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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblshpdtl.AddttblshpdtlRow((pdsshpdtlDataSet.ttblshpdtlRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblshpdtl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblshpdtl.Rows[0]) : null);
        }
Ejemplo n.º 3
0
        public Shpdtl GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Shpdtl shpdtl = null;

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

            if (row != null)
            {
                shpdtl = this.BuildFromRow(row);
            }
            return(shpdtl);
        }
Ejemplo n.º 5
0
        public void Delete(Shpdtl record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

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