public Icseu BuildFromRow(DataRow row) { var returnRecord = Icseu.BuildIcseuFromRow(row); returnRecord = this.BuildExtraFromRow <Icseu>(returnRecord, row); return(returnRecord); }
public Icseu Insert(Icseu record) { DataRow row = this.dataSet.ttblicseu.NewttblicseuRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblicseu.AddttblicseuRow((pdsicseuDataSet.ttblicseuRow)row); this.SaveChanges(); return(this.dataSet.ttblicseu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicseu.Rows[0]) : null); }
public Icseu GetByRowId(string rowId, bool fillMode, string fldList) { var row = this.GetRowByRowId(rowId, fillMode, fldList); Icseu icseu = null; if (row != null) { icseu = this.BuildFromRow(row); } return(icseu); }
protected Icseu Fetch(string where, bool fillMode, int batchsize, string fldList) { this.FetchWhere(where, fillMode, batchsize, fldList); var row = this.dataSet.ttblicseu.AsEnumerable().SingleOrDefault(); Icseu icseu = null; if (row != null) { icseu = this.BuildFromRow(row); } return(icseu); }
private void DeleteUseRowID(Icseu record) { var row = this.GetRowByRowId(record.rowID, false, string.Empty); if (row == null) { row = this.dataSet.ttblicseu.NewttblicseuRow(); Icseu.BuildMinimalRow(ref row, record); this.dataSet.ttblicseu.AddttblicseuRow((pdsicseuDataSet.ttblicseuRow)row); } row.Delete(); this.SaveChanges(); }
public Icseu Update(Icseu record) { var row = this.GetRowByRowpointer(record.rowpointer, false, string.Empty); if (row != null) { this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.SaveChanges(); return(this.dataSet.ttblicseu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicseu.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Icseu record) { this.adapter.Delete(record); }
public Icseu Update(Icseu record) { return(this.adapter.Update(record)); }
public Icseu Insert(Icseu record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Icseu record) { Icseu.UpdateRowFromIcseu(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Icseu record) { this.repository.Delete(record); }
public Icseu Update(Icseu record) { return(this.repository.Update(record)); }
public Icseu Insert(Icseu record) { return(this.repository.Insert(record)); }