public Gletv BuildFromRow(DataRow row) { var returnRecord = Gletv.BuildGletvFromRow(row); returnRecord = this.BuildExtraFromRow <Gletv>(returnRecord, row); return(returnRecord); }
public Gletv Insert(Gletv record) { DataRow row = this.dataSet.ttblgletv.NewttblgletvRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblgletv.AddttblgletvRow((pdsgletvDataSet.ttblgletvRow)row); this.SaveChanges(); return(this.dataSet.ttblgletv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblgletv.Rows[0]) : null); }
public Gletv GetByRowId(string rowId, bool fillMode, string fldList) { var row = this.GetRowByRowId(rowId, fillMode, fldList); Gletv gletv = null; if (row != null) { gletv = this.BuildFromRow(row); } return(gletv); }
protected Gletv Fetch(string where, bool fillMode, int batchsize, string fldList) { this.FetchWhere(where, fillMode, batchsize, fldList); var row = this.dataSet.ttblgletv.AsEnumerable().SingleOrDefault(); Gletv gletv = null; if (row != null) { gletv = this.BuildFromRow(row); } return(gletv); }
private void DeleteUseRowID(Gletv record) { var row = this.GetRowByRowId(record.rowID, false, string.Empty); if (row == null) { row = this.dataSet.ttblgletv.NewttblgletvRow(); Gletv.BuildMinimalRow(ref row, record); this.dataSet.ttblgletv.AddttblgletvRow((pdsgletvDataSet.ttblgletvRow)row); } row.Delete(); this.SaveChanges(); }
public Gletv Update(Gletv 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.ttblgletv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblgletv.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Gletv record) { this.repository.Delete(record); }
public Gletv Update(Gletv record) { return(this.repository.Update(record)); }
public Gletv Insert(Gletv record) { return(this.repository.Insert(record)); }
public Gletv Update(Gletv record) { return(this.adapter.Update(record)); }
public Gletv Insert(Gletv record) { return(this.adapter.Insert(record)); }
public void Delete(Gletv record) { this.adapter.Delete(record); }
public void UpdateToRow(ref DataRow row, Gletv record) { Gletv.UpdateRowFromGletv(ref row, record); this.ExtraUpdateToRow(ref row, record); }