public Oteh BuildFromRow(DataRow row) { var returnRecord = Oteh.BuildOtehFromRow(row); returnRecord = this.BuildExtraFromRow <Oteh>(returnRecord, row); return(returnRecord); }
public Oteh Insert(Oteh record) { DataRow row = this.dataSet.ttbloteh.NewttblotehRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbloteh.AddttblotehRow((pdsotehDataSet.ttblotehRow)row); this.SaveChanges(); return(this.dataSet.ttbloteh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloteh.Rows[0]) : null); }
public Oteh GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Oteh oteh = null; if (row != null) { oteh = this.BuildFromRow(row); } return(oteh); }
protected Oteh Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbloteh.AsEnumerable().SingleOrDefault(); Oteh oteh = null; if (row != null) { oteh = this.BuildFromRow(row); } return(oteh); }
public void Delete(Oteh record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbloteh.NewttblotehRow(); Oteh.BuildMinimalRow(ref row, record); this.dataSet.ttbloteh.AddttblotehRow((pdsotehDataSet.ttblotehRow)row); } row.Delete(); this.SaveChanges(); }
public Oteh Update(Oteh 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.ttbloteh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloteh.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Oteh record) { this.adapter.Delete(record); }
public Oteh Update(Oteh record) { return(this.adapter.Update(record)); }
public Oteh Insert(Oteh record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Oteh record) { Oteh.UpdateRowFromOteh(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Oteh record) { this.repository.Delete(record); }
public Oteh Update(Oteh record) { return(this.repository.Update(record)); }
public Oteh Insert(Oteh record) { return(this.repository.Insert(record)); }