public DrpOrd BuildFromRow(DataRow row) { var returnRecord = DrpOrd.BuildDrpOrdFromRow(row); returnRecord = this.BuildExtraFromRow <DrpOrd>(returnRecord, row); return(returnRecord); }
public DrpOrd Insert(DrpOrd record) { DataRow row = this.dataSet.ttbldrp_ord.Newttbldrp_ordRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbldrp_ord.Addttbldrp_ordRow((pdsdrp_ordDataSet.ttbldrp_ordRow)row); this.SaveChanges(); return(this.dataSet.ttbldrp_ord.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbldrp_ord.Rows[0]) : null); }
public DrpOrd GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); DrpOrd drpOrd = null; if (row != null) { drpOrd = this.BuildFromRow(row); } return(drpOrd); }
protected DrpOrd Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbldrp_ord.AsEnumerable().SingleOrDefault(); DrpOrd drpOrd = null; if (row != null) { drpOrd = this.BuildFromRow(row); } return(drpOrd); }
public void Delete(DrpOrd record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbldrp_ord.Newttbldrp_ordRow(); DrpOrd.BuildMinimalRow(ref row, record); this.dataSet.ttbldrp_ord.Addttbldrp_ordRow((pdsdrp_ordDataSet.ttbldrp_ordRow)row); } row.Delete(); this.SaveChanges(); }
public DrpOrd Update(DrpOrd 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.ttbldrp_ord.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbldrp_ord.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(DrpOrd record) { this.adapter.Delete(record); }
public DrpOrd Update(DrpOrd record) { return(this.adapter.Update(record)); }
public DrpOrd Insert(DrpOrd record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, DrpOrd record) { DrpOrd.UpdateRowFromDrpOrd(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(DrpOrd record) { this.repository.Delete(record); }
public DrpOrd Update(DrpOrd record) { return(this.repository.Update(record)); }
public DrpOrd Insert(DrpOrd record) { return(this.repository.Insert(record)); }