public Sasgm BuildFromRow(DataRow row) { var returnRecord = Sasgm.BuildSasgmFromRow(row); returnRecord = this.BuildExtraFromRow <Sasgm>(returnRecord, row); return(returnRecord); }
public Sasgm Insert(Sasgm record) { DataRow row = this.dataSet.ttblsasgm.NewttblsasgmRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblsasgm.AddttblsasgmRow((pdssasgmDataSet.ttblsasgmRow)row); this.SaveChanges(); return(this.dataSet.ttblsasgm.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasgm.Rows[0]) : null); }
public Sasgm GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Sasgm sasgm = null; if (row != null) { sasgm = this.BuildFromRow(row); } return(sasgm); }
protected Sasgm Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblsasgm.AsEnumerable().SingleOrDefault(); Sasgm sasgm = null; if (row != null) { sasgm = this.BuildFromRow(row); } return(sasgm); }
public void Delete(Sasgm record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblsasgm.NewttblsasgmRow(); Sasgm.BuildMinimalRow(ref row, record); this.dataSet.ttblsasgm.AddttblsasgmRow((pdssasgmDataSet.ttblsasgmRow)row); } row.Delete(); this.SaveChanges(); }
public Sasgm Update(Sasgm 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.ttblsasgm.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasgm.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Sasgm record) { this.adapter.Delete(record); }
public Sasgm Update(Sasgm record) { return(this.adapter.Update(record)); }
public Sasgm Insert(Sasgm record) { return(this.adapter.Insert(record)); }
public Sasgm Insert(Sasgm record) { return(this.repository.Insert(record)); }
public void Delete(Sasgm record) { this.repository.Delete(record); }
public Sasgm Update(Sasgm record) { return(this.repository.Update(record)); }
public void UpdateToRow(ref DataRow row, Sasgm record) { Sasgm.UpdateRowFromSasgm(ref row, record); this.ExtraUpdateToRow(ref row, record); }