public Swapet BuildFromRow(DataRow row) { var returnRecord = Swapet.BuildSwapetFromRow(row); returnRecord = this.BuildExtraFromRow <Swapet>(returnRecord, row); return(returnRecord); }
public Swapet Insert(Swapet record) { DataRow row = this.dataSet.ttblswapet.NewttblswapetRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblswapet.AddttblswapetRow((pdsswapetDataSet.ttblswapetRow)row); this.SaveChanges(); return(this.dataSet.ttblswapet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblswapet.Rows[0]) : null); }
public Swapet GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Swapet swapet = null; if (row != null) { swapet = this.BuildFromRow(row); } return(swapet); }
protected Swapet Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblswapet.AsEnumerable().SingleOrDefault(); Swapet swapet = null; if (row != null) { swapet = this.BuildFromRow(row); } return(swapet); }
public void Delete(Swapet record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblswapet.NewttblswapetRow(); Swapet.BuildMinimalRow(ref row, record); this.dataSet.ttblswapet.AddttblswapetRow((pdsswapetDataSet.ttblswapetRow)row); } row.Delete(); this.SaveChanges(); }
public Swapet Update(Swapet 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.ttblswapet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblswapet.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Swapet record) { this.adapter.Delete(record); }
public Swapet Update(Swapet record) { return(this.adapter.Update(record)); }
public Swapet Insert(Swapet record) { return(this.adapter.Insert(record)); }
public Swapet Insert(Swapet record) { return(this.repository.Insert(record)); }
public void Delete(Swapet record) { this.repository.Delete(record); }
public Swapet Update(Swapet record) { return(this.repository.Update(record)); }
public void UpdateToRow(ref DataRow row, Swapet record) { Swapet.UpdateRowFromSwapet(ref row, record); this.ExtraUpdateToRow(ref row, record); }