public Prodcat BuildFromRow(DataRow row) { var returnRecord = Prodcat.BuildProdcatFromRow(row); returnRecord = this.BuildExtraFromRow <Prodcat>(returnRecord, row); return(returnRecord); }
public Prodcat Insert(Prodcat record) { DataRow row = this.dataSet.ttblprodcat.NewttblprodcatRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblprodcat.AddttblprodcatRow((pdsprodcatDataSet.ttblprodcatRow)row); this.SaveChanges(); return(this.dataSet.ttblprodcat.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblprodcat.Rows[0]) : null); }
public Prodcat GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Prodcat prodcat = null; if (row != null) { prodcat = this.BuildFromRow(row); } return(prodcat); }
protected Prodcat Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblprodcat.AsEnumerable().SingleOrDefault(); Prodcat prodcat = null; if (row != null) { prodcat = this.BuildFromRow(row); } return(prodcat); }
public void Delete(Prodcat record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblprodcat.NewttblprodcatRow(); Prodcat.BuildMinimalRow(ref row, record); this.dataSet.ttblprodcat.AddttblprodcatRow((pdsprodcatDataSet.ttblprodcatRow)row); } row.Delete(); this.SaveChanges(); }
public Prodcat Update(Prodcat 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.ttblprodcat.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblprodcat.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public Prodcat Insert(Prodcat record) { return(this.repository.Insert(record)); }
public void Delete(Prodcat record) { this.repository.Delete(record); }
public Prodcat Update(Prodcat record) { return(this.repository.Update(record)); }
public void Delete(Prodcat record) { this.adapter.Delete(record); }
public Prodcat Update(Prodcat record) { return(this.adapter.Update(record)); }
public Prodcat Insert(Prodcat record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Prodcat record) { Prodcat.UpdateRowFromProdcat(ref row, record); this.ExtraUpdateToRow(ref row, record); }