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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblcartondtl.AddttblcartondtlRow((pdscartondtlDataSet.ttblcartondtlRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblcartondtl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcartondtl.Rows[0]) : null);
        }
示例#3
0
        public Cartondtl GetByRowId(string rowId, string fldList)
        {
            var       row       = this.GetRowByRowId(rowId, fldList);
            Cartondtl cartondtl = null;

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

            if (row != null)
            {
                cartondtl = this.BuildFromRow(row);
            }
            return(cartondtl);
        }
示例#5
0
        public void Delete(Cartondtl record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblcartondtl.NewttblcartondtlRow();
                Cartondtl.BuildMinimalRow(ref row, record);
                this.dataSet.ttblcartondtl.AddttblcartondtlRow((pdscartondtlDataSet.ttblcartondtlRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
示例#6
0
        public Cartondtl Update(Cartondtl 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.ttblcartondtl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcartondtl.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
示例#7
0
 public void UpdateToRow(ref DataRow row, Cartondtl record)
 {
     Cartondtl.UpdateRowFromCartondtl(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
示例#8
0
 public void Delete(Cartondtl record)
 {
     this.repository.Delete(record);
 }
示例#9
0
 public Cartondtl Update(Cartondtl record)
 {
     return(this.repository.Update(record));
 }
示例#10
0
 public Cartondtl Insert(Cartondtl record)
 {
     return(this.repository.Insert(record));
 }
示例#11
0
 public void Delete(Cartondtl record)
 {
     this.adapter.Delete(record);
 }
示例#12
0
 public Cartondtl Update(Cartondtl record)
 {
     return(this.adapter.Update(record));
 }
示例#13
0
 public Cartondtl Insert(Cartondtl record)
 {
     return(this.adapter.Insert(record));
 }