Exemplo n.º 1
0
        public RtnCtnDet BuildFromRow(DataRow row)
        {
            var returnRecord = RtnCtnDet.BuildRtnCtnDetFromRow(row);

            returnRecord = this.BuildExtraFromRow <RtnCtnDet>(returnRecord, row);
            return(returnRecord);
        }
Exemplo n.º 2
0
        public RtnCtnDet Insert(RtnCtnDet record)
        {
            DataRow row = this.dataSet.ttblrtn_ctn_det.Newttblrtn_ctn_detRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblrtn_ctn_det.Addttblrtn_ctn_detRow((pdsrtn_ctn_detDataSet.ttblrtn_ctn_detRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblrtn_ctn_det.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtn_ctn_det.Rows[0]) : null);
        }
Exemplo n.º 3
0
        public RtnCtnDet GetByRowId(string rowId, string fldList)
        {
            var       row       = this.GetRowByRowId(rowId, fldList);
            RtnCtnDet rtnCtnDet = null;

            if (row != null)
            {
                rtnCtnDet = this.BuildFromRow(row);
            }
            return(rtnCtnDet);
        }
Exemplo n.º 4
0
        protected RtnCtnDet Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var       row       = this.dataSet.ttblrtn_ctn_det.AsEnumerable().SingleOrDefault();
            RtnCtnDet rtnCtnDet = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblrtn_ctn_det.Newttblrtn_ctn_detRow();
                RtnCtnDet.BuildMinimalRow(ref row, record);
                this.dataSet.ttblrtn_ctn_det.Addttblrtn_ctn_detRow((pdsrtn_ctn_detDataSet.ttblrtn_ctn_detRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemplo n.º 6
0
        public RtnCtnDet Update(RtnCtnDet 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.ttblrtn_ctn_det.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtn_ctn_det.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Exemplo n.º 7
0
 public void UpdateToRow(ref DataRow row, RtnCtnDet record)
 {
     RtnCtnDet.UpdateRowFromRtnCtnDet(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Exemplo n.º 8
0
 public void Delete(RtnCtnDet record)
 {
     this.adapter.Delete(record);
 }
Exemplo n.º 9
0
 public RtnCtnDet Update(RtnCtnDet record)
 {
     return(this.adapter.Update(record));
 }
Exemplo n.º 10
0
 public RtnCtnDet Insert(RtnCtnDet record)
 {
     return(this.adapter.Insert(record));
 }
Exemplo n.º 11
0
 public RtnCtnDet Update(RtnCtnDet record)
 {
     return(this.repository.Update(record));
 }
Exemplo n.º 12
0
 public RtnCtnDet Insert(RtnCtnDet record)
 {
     return(this.repository.Insert(record));
 }
Exemplo n.º 13
0
 public void Delete(RtnCtnDet record)
 {
     this.repository.Delete(record);
 }