public Otevh BuildFromRow(DataRow row) { var returnRecord = Otevh.BuildOtevhFromRow(row); returnRecord = this.BuildExtraFromRow <Otevh>(returnRecord, row); return(returnRecord); }
public Otevh Insert(Otevh record) { DataRow row = this.dataSet.ttblotevh.NewttblotevhRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblotevh.AddttblotevhRow((pdsotevhDataSet.ttblotevhRow)row); this.SaveChanges(); return(this.dataSet.ttblotevh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblotevh.Rows[0]) : null); }
public Otevh GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Otevh otevh = null; if (row != null) { otevh = this.BuildFromRow(row); } return(otevh); }
protected Otevh Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblotevh.AsEnumerable().SingleOrDefault(); Otevh otevh = null; if (row != null) { otevh = this.BuildFromRow(row); } return(otevh); }
public void Delete(Otevh record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblotevh.NewttblotevhRow(); Otevh.BuildMinimalRow(ref row, record); this.dataSet.ttblotevh.AddttblotevhRow((pdsotevhDataSet.ttblotevhRow)row); } row.Delete(); this.SaveChanges(); }
public Otevh Update(Otevh 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.ttblotevh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblotevh.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Otevh record) { this.repository.Delete(record); }
public Otevh Update(Otevh record) { return(this.repository.Update(record)); }
public Otevh Insert(Otevh record) { return(this.repository.Insert(record)); }
public void UpdateToRow(ref DataRow row, Otevh record) { Otevh.UpdateRowFromOtevh(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Otevh record) { this.adapter.Delete(record); }
public Otevh Update(Otevh record) { return(this.adapter.Update(record)); }
public Otevh Insert(Otevh record) { return(this.adapter.Insert(record)); }