/// /// 增加新一条新记录。 /// public RowSIGNIN AddRowSIGNIN(System.String VCLINICNO, System.DateTime DCREATE, System.Int16 NNUM) { RowSIGNIN row = ((RowSIGNIN)(this.NewRow())); row.ItemArray = new object[] { VCLINICNO, DCREATE, NNUM }; this.Rows.Add(row); return(row); }
public RowChangeEventSIGNIN(RowSIGNIN row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
/// /// 删除指定的记录。 /// public void RemoveRowSIGNIN(RowSIGNIN row) { this.Rows.Remove(row); }
/// /// 增加新一条新记录。 /// public void AddRowSIGNIN(RowSIGNIN row) { this.Rows.Add(row); }