public Crsb BuildFromRow(DataRow row) { var returnRecord = Crsb.BuildCrsbFromRow(row); returnRecord = this.BuildExtraFromRow <Crsb>(returnRecord, row); return(returnRecord); }
public Crsb Insert(Crsb record) { DataRow row = this.dataSet.ttblcrsb.NewttblcrsbRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblcrsb.AddttblcrsbRow((pdscrsbDataSet.ttblcrsbRow)row); this.SaveChanges(); return(this.dataSet.ttblcrsb.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcrsb.Rows[0]) : null); }
public Crsb GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Crsb crsb = null; if (row != null) { crsb = this.BuildFromRow(row); } return(crsb); }
protected Crsb Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblcrsb.AsEnumerable().SingleOrDefault(); Crsb crsb = null; if (row != null) { crsb = this.BuildFromRow(row); } return(crsb); }
private void DeleteUseRowID(Crsb record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblcrsb.NewttblcrsbRow(); Crsb.BuildMinimalRow(ref row, record); this.dataSet.ttblcrsb.AddttblcrsbRow((pdscrsbDataSet.ttblcrsbRow)row); } row.Delete(); this.SaveChanges(); }
public Crsb Update(Crsb 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.ttblcrsb.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcrsb.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Crsb record) { this.repository.Delete(record); }
public Crsb Update(Crsb record) { return(this.repository.Update(record)); }
public Crsb Insert(Crsb record) { return(this.repository.Insert(record)); }
public void Delete(Crsb record) { this.adapter.Delete(record); }
public Crsb Update(Crsb record) { return(this.adapter.Update(record)); }
public Crsb Insert(Crsb record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Crsb record) { Crsb.UpdateRowFromCrsb(ref row, record); this.ExtraUpdateToRow(ref row, record); }