public Glar BuildFromRow(DataRow row) { var returnRecord = Glar.BuildGlarFromRow(row); returnRecord = this.BuildExtraFromRow <Glar>(returnRecord, row); return(returnRecord); }
public Glar Insert(Glar record) { DataRow row = this.dataSet.ttblglar.NewttblglarRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblglar.AddttblglarRow((pdsglarDataSet.ttblglarRow)row); this.SaveChanges(); return(this.dataSet.ttblglar.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblglar.Rows[0]) : null); }
public Glar GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Glar glar = null; if (row != null) { glar = this.BuildFromRow(row); } return(glar); }
protected Glar Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblglar.AsEnumerable().SingleOrDefault(); Glar glar = null; if (row != null) { glar = this.BuildFromRow(row); } return(glar); }
public void Delete(Glar record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblglar.NewttblglarRow(); Glar.BuildMinimalRow(ref row, record); this.dataSet.ttblglar.AddttblglarRow((pdsglarDataSet.ttblglarRow)row); } row.Delete(); this.SaveChanges(); }
public Glar Update(Glar 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.ttblglar.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblglar.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Glar record) { Glar.UpdateRowFromGlar(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Glar record) { this.repository.Delete(record); }
public Glar Update(Glar record) { return(this.repository.Update(record)); }
public Glar Insert(Glar record) { return(this.repository.Insert(record)); }
public void Delete(Glar record) { this.adapter.Delete(record); }
public Glar Update(Glar record) { return(this.adapter.Update(record)); }
public Glar Insert(Glar record) { return(this.adapter.Insert(record)); }