public Wlet BuildFromRow(DataRow row) { var returnRecord = Wlet.BuildWletFromRow(row); returnRecord = this.BuildExtraFromRow <Wlet>(returnRecord, row); return(returnRecord); }
public Wlet Insert(Wlet record) { DataRow row = this.dataSet.ttblwlet.NewttblwletRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblwlet.AddttblwletRow((pdswletDataSet.ttblwletRow)row); this.SaveChanges(); return(this.dataSet.ttblwlet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwlet.Rows[0]) : null); }
public Wlet GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Wlet wlet = null; if (row != null) { wlet = this.BuildFromRow(row); } return(wlet); }
protected Wlet Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblwlet.AsEnumerable().SingleOrDefault(); Wlet wlet = null; if (row != null) { wlet = this.BuildFromRow(row); } return(wlet); }
public void Delete(Wlet record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblwlet.NewttblwletRow(); Wlet.BuildMinimalRow(ref row, record); this.dataSet.ttblwlet.AddttblwletRow((pdswletDataSet.ttblwletRow)row); } row.Delete(); this.SaveChanges(); }
public Wlet Update(Wlet 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.ttblwlet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwlet.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Wlet record) { Wlet.UpdateRowFromWlet(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Wlet record) { this.repository.Delete(record); }
public Wlet Update(Wlet record) { return(this.repository.Update(record)); }
public Wlet Insert(Wlet record) { return(this.repository.Insert(record)); }
public void Delete(Wlet record) { this.adapter.Delete(record); }
public Wlet Update(Wlet record) { return(this.adapter.Update(record)); }
public Wlet Insert(Wlet record) { return(this.adapter.Insert(record)); }