public Jmeh BuildFromRow(DataRow row) { var returnRecord = Jmeh.BuildJmehFromRow(row); returnRecord = this.BuildExtraFromRow <Jmeh>(returnRecord, row); return(returnRecord); }
public Jmeh Insert(Jmeh record) { DataRow row = this.dataSet.ttbljmeh.NewttbljmehRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttbljmeh.AddttbljmehRow((pdsjmehDataSet.ttbljmehRow)row); this.SaveChanges(); return(this.dataSet.ttbljmeh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbljmeh.Rows[0]) : null); }
public Jmeh GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Jmeh jmeh = null; if (row != null) { jmeh = this.BuildFromRow(row); } return(jmeh); }
protected Jmeh Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttbljmeh.AsEnumerable().SingleOrDefault(); Jmeh jmeh = null; if (row != null) { jmeh = this.BuildFromRow(row); } return(jmeh); }
public void Delete(Jmeh record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttbljmeh.NewttbljmehRow(); Jmeh.BuildMinimalRow(ref row, record); this.dataSet.ttbljmeh.AddttbljmehRow((pdsjmehDataSet.ttbljmehRow)row); } row.Delete(); this.SaveChanges(); }
public Jmeh Update(Jmeh 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.ttbljmeh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbljmeh.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void Delete(Jmeh record) { this.repository.Delete(record); }
public Jmeh Update(Jmeh record) { return(this.repository.Update(record)); }
public Jmeh Insert(Jmeh record) { return(this.repository.Insert(record)); }
public void Delete(Jmeh record) { this.adapter.Delete(record); }
public Jmeh Update(Jmeh record) { return(this.adapter.Update(record)); }
public Jmeh Insert(Jmeh record) { return(this.adapter.Insert(record)); }
public void UpdateToRow(ref DataRow row, Jmeh record) { Jmeh.UpdateRowFromJmeh(ref row, record); this.ExtraUpdateToRow(ref row, record); }