public Cmsp BuildFromRow(DataRow row) { var returnRecord = Cmsp.BuildCmspFromRow(row); returnRecord = this.BuildExtraFromRow <Cmsp>(returnRecord, row); return(returnRecord); }
public Cmsp Insert(Cmsp record) { DataRow row = this.dataSet.ttblcmsp.NewttblcmspRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblcmsp.AddttblcmspRow((pdscmspDataSet.ttblcmspRow)row); this.SaveChanges(); return(this.dataSet.ttblcmsp.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcmsp.Rows[0]) : null); }
public Cmsp GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Cmsp cmsp = null; if (row != null) { cmsp = this.BuildFromRow(row); } return(cmsp); }
protected Cmsp Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblcmsp.AsEnumerable().SingleOrDefault(); Cmsp cmsp = null; if (row != null) { cmsp = this.BuildFromRow(row); } return(cmsp); }
private void DeleteUseRowID(Cmsp record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblcmsp.NewttblcmspRow(); Cmsp.BuildMinimalRow(ref row, record); this.dataSet.ttblcmsp.AddttblcmspRow((pdscmspDataSet.ttblcmspRow)row); } row.Delete(); this.SaveChanges(); }
public Cmsp Update(Cmsp record) { var row = this.GetRowByRowpointer(record.rowpointer, string.Empty); if (row != null) { this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.SaveChanges(); return(this.dataSet.ttblcmsp.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcmsp.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Cmsp record) { this.repository.Delete(record); }
public Cmsp Update(Cmsp record) { return(this.repository.Update(record)); }
public Cmsp Insert(Cmsp record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Cmsp record) { Cmsp.UpdateRowFromCmsp(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Cmsp record) { this.adapter.Delete(record); }
public Cmsp Update(Cmsp record) { return(this.adapter.Update(record)); }
public Cmsp Insert(Cmsp record) { return(this.adapter.Insert(record)); }