public Icamu BuildFromRow(DataRow row) { var returnRecord = Icamu.BuildIcamuFromRow(row); returnRecord = this.BuildExtraFromRow <Icamu>(returnRecord, row); return(returnRecord); }
public Icamu Insert(Icamu record) { DataRow row = this.dataSet.ttblicamu.NewttblicamuRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblicamu.AddttblicamuRow((pdsicamuDataSet.ttblicamuRow)row); this.SaveChanges(); return(this.dataSet.ttblicamu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicamu.Rows[0]) : null); }
public Icamu GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Icamu icamu = null; if (row != null) { icamu = this.BuildFromRow(row); } return(icamu); }
protected Icamu Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblicamu.AsEnumerable().SingleOrDefault(); Icamu icamu = null; if (row != null) { icamu = this.BuildFromRow(row); } return(icamu); }
public void Delete(Icamu record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblicamu.NewttblicamuRow(); Icamu.BuildMinimalRow(ref row, record); this.dataSet.ttblicamu.AddttblicamuRow((pdsicamuDataSet.ttblicamuRow)row); } row.Delete(); this.SaveChanges(); }
public Icamu Update(Icamu 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.ttblicamu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicamu.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Icamu record) { this.adapter.Delete(record); }
public Icamu Update(Icamu record) { return(this.adapter.Update(record)); }
public Icamu Insert(Icamu record) { return(this.adapter.Insert(record)); }
public void Delete(Icamu record) { this.repository.Delete(record); }
public Icamu Update(Icamu record) { return(this.repository.Update(record)); }
public Icamu Insert(Icamu record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Icamu record) { Icamu.UpdateRowFromIcamu(ref row, record); this.ExtraUpdateToRow(ref row, record); }