public Smsv BuildFromRow(DataRow row) { var returnRecord = Smsv.BuildSmsvFromRow(row); returnRecord = this.BuildExtraFromRow <Smsv>(returnRecord, row); return(returnRecord); }
public Smsv Insert(Smsv record) { DataRow row = this.dataSet.ttblsmsv.NewttblsmsvRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblsmsv.AddttblsmsvRow((pdssmsvDataSet.ttblsmsvRow)row); this.SaveChanges(); return(this.dataSet.ttblsmsv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsmsv.Rows[0]) : null); }
public Smsv GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Smsv smsv = null; if (row != null) { smsv = this.BuildFromRow(row); } return(smsv); }
protected Smsv Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblsmsv.AsEnumerable().SingleOrDefault(); Smsv smsv = null; if (row != null) { smsv = this.BuildFromRow(row); } return(smsv); }
public void Delete(Smsv record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblsmsv.NewttblsmsvRow(); Smsv.BuildMinimalRow(ref row, record); this.dataSet.ttblsmsv.AddttblsmsvRow((pdssmsvDataSet.ttblsmsvRow)row); } row.Delete(); this.SaveChanges(); }
public Smsv Update(Smsv 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.ttblsmsv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsmsv.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public Smsv Insert(Smsv record) { return(this.repository.Insert(record)); }
public void Delete(Smsv record) { this.repository.Delete(record); }
public Smsv Update(Smsv record) { return(this.repository.Update(record)); }
public void Delete(Smsv record) { this.adapter.Delete(record); }
public Smsv Update(Smsv record) { return(this.adapter.Update(record)); }
public Smsv Insert(Smsv record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Smsv record) { Smsv.UpdateRowFromSmsv(ref row, record); this.ExtraUpdateToRow(ref row, record); }