public RtnCtnMst BuildFromRow(DataRow row) { var returnRecord = RtnCtnMst.BuildRtnCtnMstFromRow(row); returnRecord = this.BuildExtraFromRow <RtnCtnMst>(returnRecord, row); return(returnRecord); }
public RtnCtnMst Insert(RtnCtnMst record) { DataRow row = this.dataSet.ttblrtn_ctn_mst.Newttblrtn_ctn_mstRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblrtn_ctn_mst.Addttblrtn_ctn_mstRow((pdsrtn_ctn_mstDataSet.ttblrtn_ctn_mstRow)row); this.SaveChanges(); return(this.dataSet.ttblrtn_ctn_mst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtn_ctn_mst.Rows[0]) : null); }
public RtnCtnMst GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); RtnCtnMst rtnCtnMst = null; if (row != null) { rtnCtnMst = this.BuildFromRow(row); } return(rtnCtnMst); }
protected RtnCtnMst Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblrtn_ctn_mst.AsEnumerable().SingleOrDefault(); RtnCtnMst rtnCtnMst = null; if (row != null) { rtnCtnMst = this.BuildFromRow(row); } return(rtnCtnMst); }
public void Delete(RtnCtnMst record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblrtn_ctn_mst.Newttblrtn_ctn_mstRow(); RtnCtnMst.BuildMinimalRow(ref row, record); this.dataSet.ttblrtn_ctn_mst.Addttblrtn_ctn_mstRow((pdsrtn_ctn_mstDataSet.ttblrtn_ctn_mstRow)row); } row.Delete(); this.SaveChanges(); }
public RtnCtnMst Update(RtnCtnMst 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_mst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtn_ctn_mst.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(RtnCtnMst record) { this.repository.Delete(record); }
public RtnCtnMst Update(RtnCtnMst record) { return(this.repository.Update(record)); }
public RtnCtnMst Insert(RtnCtnMst record) { return(this.repository.Insert(record)); }
public void Delete(RtnCtnMst record) { this.adapter.Delete(record); }
public RtnCtnMst Update(RtnCtnMst record) { return(this.adapter.Update(record)); }
public RtnCtnMst Insert(RtnCtnMst record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, RtnCtnMst record) { RtnCtnMst.UpdateRowFromRtnCtnMst(ref row, record); this.ExtraUpdateToRow(ref row, record); }