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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblprod_stg_dtl.Addttblprod_stg_dtlRow((pdsprod_stg_dtlDataSet.ttblprod_stg_dtlRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblprod_stg_dtl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblprod_stg_dtl.Rows[0]) : null);
        }
Ejemplo n.º 3
0
        public ProdStgDtl GetByRowId(string rowId, string fldList)
        {
            var        row        = this.GetRowByRowId(rowId, fldList);
            ProdStgDtl prodStgDtl = null;

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

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

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