예제 #1
0
        public Venddetail BuildFromRow(DataRow row)
        {
            var returnRecord = Venddetail.BuildVenddetailFromRow(row);

            returnRecord = this.BuildExtraFromRow <Venddetail>(returnRecord, row);
            return(returnRecord);
        }
예제 #2
0
        public Venddetail Insert(Venddetail record)
        {
            DataRow row = this.dataSet.ttblvenddetail.NewttblvenddetailRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblvenddetail.AddttblvenddetailRow((pdsvenddetailDataSet.ttblvenddetailRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblvenddetail.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblvenddetail.Rows[0]) : null);
        }
예제 #3
0
        public Venddetail GetByRowId(string rowId, string fldList)
        {
            var        row        = this.GetRowByRowId(rowId, fldList);
            Venddetail venddetail = null;

            if (row != null)
            {
                venddetail = this.BuildFromRow(row);
            }
            return(venddetail);
        }
예제 #4
0
        protected Venddetail Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var        row        = this.dataSet.ttblvenddetail.AsEnumerable().SingleOrDefault();
            Venddetail venddetail = null;

            if (row != null)
            {
                venddetail = this.BuildFromRow(row);
            }
            return(venddetail);
        }
예제 #5
0
        public void Delete(Venddetail record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblvenddetail.NewttblvenddetailRow();
                Venddetail.BuildMinimalRow(ref row, record);
                this.dataSet.ttblvenddetail.AddttblvenddetailRow((pdsvenddetailDataSet.ttblvenddetailRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
예제 #6
0
        public Venddetail Update(Venddetail 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.ttblvenddetail.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblvenddetail.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
예제 #7
0
 public void Delete(Venddetail record)
 {
     this.repository.Delete(record);
 }
예제 #8
0
 public Venddetail Update(Venddetail record)
 {
     return(this.repository.Update(record));
 }
예제 #9
0
 public Venddetail Insert(Venddetail record)
 {
     return(this.repository.Insert(record));
 }
예제 #10
0
 public void Delete(Venddetail record)
 {
     this.adapter.Delete(record);
 }
예제 #11
0
 public Venddetail Update(Venddetail record)
 {
     return(this.adapter.Update(record));
 }
예제 #12
0
 public Venddetail Insert(Venddetail record)
 {
     return(this.adapter.Insert(record));
 }
예제 #13
0
 public void UpdateToRow(ref DataRow row, Venddetail record)
 {
     Venddetail.UpdateRowFromVenddetail(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }