public Sastpl BuildFromRow(DataRow row) { var returnRecord = Sastpl.BuildSastplFromRow(row); returnRecord = this.BuildExtraFromRow <Sastpl>(returnRecord, row); return(returnRecord); }
public Sastpl Insert(Sastpl record) { DataRow row = this.dataSet.ttblsastpl.NewttblsastplRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblsastpl.AddttblsastplRow((pdssastplDataSet.ttblsastplRow)row); this.SaveChanges(); return(this.dataSet.ttblsastpl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsastpl.Rows[0]) : null); }
public Sastpl GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Sastpl sastpl = null; if (row != null) { sastpl = this.BuildFromRow(row); } return(sastpl); }
protected Sastpl Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblsastpl.AsEnumerable().SingleOrDefault(); Sastpl sastpl = null; if (row != null) { sastpl = this.BuildFromRow(row); } return(sastpl); }
public void Delete(Sastpl record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblsastpl.NewttblsastplRow(); Sastpl.BuildMinimalRow(ref row, record); this.dataSet.ttblsastpl.AddttblsastplRow((pdssastplDataSet.ttblsastplRow)row); } row.Delete(); this.SaveChanges(); }
public Sastpl Update(Sastpl 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.ttblsastpl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsastpl.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public Sastpl Update(Sastpl record) { return(this.repository.Update(record)); }
public Sastpl Insert(Sastpl record) { return(this.repository.Insert(record)); }
public void Delete(Sastpl record) { this.repository.Delete(record); }
public void UpdateToRow(ref DataRow row, Sastpl record) { Sastpl.UpdateRowFromSastpl(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Sastpl record) { this.adapter.Delete(record); }
public Sastpl Update(Sastpl record) { return(this.adapter.Update(record)); }
public Sastpl Insert(Sastpl record) { return(this.adapter.Insert(record)); }