public Recordsync BuildFromRow(DataRow row) { var returnRecord = Recordsync.BuildRecordsyncFromRow(row); returnRecord = this.BuildExtraFromRow <Recordsync>(returnRecord, row); return(returnRecord); }
public Recordsync Insert(Recordsync record) { DataRow row = this.dataSet.ttblrecordsync.NewttblrecordsyncRow(); this.UpdateToRow(ref row, record); this.ExtraUpdateToRow(ref row, record); this.dataSet.ttblrecordsync.AddttblrecordsyncRow((pdsrecordsyncDataSet.ttblrecordsyncRow)row); this.SaveChanges(); return(this.dataSet.ttblrecordsync.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrecordsync.Rows[0]) : null); }
public Recordsync GetByRowId(string rowId, string fldList) { var row = this.GetRowByRowId(rowId, fldList); Recordsync recordsync = null; if (row != null) { recordsync = this.BuildFromRow(row); } return(recordsync); }
protected Recordsync Fetch(string where, int batchsize, string fldList) { this.FetchWhere(where, batchsize, fldList); var row = this.dataSet.ttblrecordsync.AsEnumerable().SingleOrDefault(); Recordsync recordsync = null; if (row != null) { recordsync = this.BuildFromRow(row); } return(recordsync); }
public void Delete(Recordsync record) { var row = this.GetRowByRowId(record.rowID, string.Empty); if (row == null) { row = this.dataSet.ttblrecordsync.NewttblrecordsyncRow(); Recordsync.BuildMinimalRow(ref row, record); this.dataSet.ttblrecordsync.AddttblrecordsyncRow((pdsrecordsyncDataSet.ttblrecordsyncRow)row); } row.Delete(); this.SaveChanges(); }
public Recordsync Update(Recordsync 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.ttblrecordsync.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrecordsync.Rows[0]) : null); } ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421); return(null); }
public void UpdateToRow(ref DataRow row, Recordsync record) { Recordsync.UpdateRowFromRecordsync(ref row, record); this.ExtraUpdateToRow(ref row, record); }
public void Delete(Recordsync record) { this.repository.Delete(record); }
public Recordsync Update(Recordsync record) { return(this.repository.Update(record)); }
public Recordsync Insert(Recordsync record) { return(this.repository.Insert(record)); }
public void Delete(Recordsync record) { this.adapter.Delete(record); }
public Recordsync Update(Recordsync record) { return(this.adapter.Update(record)); }
public Recordsync Insert(Recordsync record) { return(this.adapter.Insert(record)); }