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