public Orddtl BuildFromRow(DataRow row) { var returnRecord = Orddtl.BuildOrddtlFromRow(row); returnRecord = this.BuildExtraFromRow <Orddtl>(returnRecord, row); return(returnRecord); }
public Orddtl Insert(Orddtl record) { DataRow row = this.dataSet.ttblorddtl.NewttblorddtlRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblorddtl.AddttblorddtlRow((pdsorddtlDataSet.ttblorddtlRow)row); this.SaveChanges(); return(this.dataSet.ttblorddtl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblorddtl.Rows[0]) : null); }
public Orddtl GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Orddtl orddtl = null; if (row != null) { orddtl = this.BuildFromRow(row); } return(orddtl); }
protected Orddtl Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblorddtl.AsEnumerable().SingleOrDefault(); Orddtl orddtl = null; if (row != null) { orddtl = this.BuildFromRow(row); } return(orddtl); }
public void Delete(Orddtl record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblorddtl.NewttblorddtlRow(); Orddtl.BuildMinimalRow(ref row, record); this.dataSet.ttblorddtl.AddttblorddtlRow((pdsorddtlDataSet.ttblorddtlRow)row); } row.Delete(); this.SaveChanges(); }
public Orddtl Update(Orddtl 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.ttblorddtl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblorddtl.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Orddtl record) { Orddtl.UpdateRowFromOrddtl(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Orddtl record) { this.adapter.Delete(record); }
public Orddtl Update(Orddtl record) { return(this.adapter.Update(record)); }
public Orddtl Insert(Orddtl record) { return(this.adapter.Insert(record)); }
public void Delete(Orddtl record) { this.repository.Delete(record); }
public Orddtl Update(Orddtl record) { return(this.repository.Update(record)); }
public Orddtl Insert(Orddtl record) { return(this.repository.Insert(record)); }