public PvImages BuildFromRow(DataRow row) { var returnRecord = PvImages.BuildPvImagesFromRow(row); returnRecord = this.BuildExtraFromRow <PvImages>(returnRecord, row); return(returnRecord); }
public PvImages Insert(PvImages record) { DataRow row = this.dataSet.ttblpv_images.Newttblpv_imagesRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblpv_images.Addttblpv_imagesRow((pdspv_imagesDataSet.ttblpv_imagesRow)row); this.SaveChanges(); return(this.dataSet.ttblpv_images.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_images.Rows[0]) : null); }
public PvImages GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); PvImages pvImages = null; if (row != null) { pvImages = this.BuildFromRow(row); } return(pvImages); }
protected PvImages Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblpv_images.AsEnumerable().SingleOrDefault(); PvImages pvImages = null; if (row != null) { pvImages = this.BuildFromRow(row); } return(pvImages); }
public void Delete(PvImages record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblpv_images.Newttblpv_imagesRow(); PvImages.BuildMinimalRow(ref row, record); this.dataSet.ttblpv_images.Addttblpv_imagesRow((pdspv_imagesDataSet.ttblpv_imagesRow)row); } row.Delete(); this.SaveChanges(); }
public PvImages Update(PvImages 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.ttblpv_images.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_images.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public PvImages Insert(PvImages record) { return(this.repository.Insert(record)); }
public void Delete(PvImages record) { this.repository.Delete(record); }
public PvImages Update(PvImages record) { return(this.repository.Update(record)); }
public void UpdateToRow(ref DataRow row, PvImages record) { PvImages.UpdateRowFromPvImages(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(PvImages record) { this.adapter.Delete(record); }
public PvImages Update(PvImages record) { return(this.adapter.Update(record)); }
public PvImages Insert(PvImages record) { return(this.adapter.Insert(record)); }