public Bisg BuildFromRow(DataRow row) { var returnRecord = Bisg.BuildBisgFromRow(row); returnRecord = this.BuildExtraFromRow <Bisg>(returnRecord, row); return(returnRecord); }
public Bisg Insert(Bisg record) { DataRow row = this.dataSet.ttblbisg.NewttblbisgRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblbisg.AddttblbisgRow((pdsbisgDataSet.ttblbisgRow)row); this.SaveChanges(); return(this.dataSet.ttblbisg.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblbisg.Rows[0]) : null); }
public Bisg GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Bisg bisg = null; if (row != null) { bisg = this.BuildFromRow(row); } return(bisg); }
protected Bisg Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblbisg.AsEnumerable().SingleOrDefault(); Bisg bisg = null; if (row != null) { bisg = this.BuildFromRow(row); } return(bisg); }
public void Delete(Bisg record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblbisg.NewttblbisgRow(); Bisg.BuildMinimalRow(ref row, record); this.dataSet.ttblbisg.AddttblbisgRow((pdsbisgDataSet.ttblbisgRow)row); } row.Delete(); this.SaveChanges(); }
public Bisg Update(Bisg 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.ttblbisg.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblbisg.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Bisg record) { this.adapter.Delete(record); }
public Bisg Update(Bisg record) { return(this.adapter.Update(record)); }
public Bisg Insert(Bisg record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Bisg record) { Bisg.UpdateRowFromBisg(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public Bisg Insert(Bisg record) { return(this.repository.Insert(record)); }
public void Delete(Bisg record) { this.repository.Delete(record); }
public Bisg Update(Bisg record) { return(this.repository.Update(record)); }