/// /// 增加新一条新记录。 /// public RowV_COST_INFO AddRowV_COST_INFO(System.Int64 NFEE_ID, System.String VCLINICNO, System.String VITEM_NAME, System.DateTime DFEE_DATE, System.String VITEM_UNITS, System.Decimal NITEM_PRICE, System.Decimal NITEM_SL, System.Decimal NITEM_MONEY, System.String VDEPARTNAME, System.String VFEE_OPERATENAME, System.Decimal NBACK_SL) { RowV_COST_INFO row = ((RowV_COST_INFO)(this.NewRow())); row.ItemArray = new object[] { NFEE_ID, VCLINICNO, VITEM_NAME, DFEE_DATE, VITEM_UNITS, NITEM_PRICE, NITEM_SL, NITEM_MONEY, VDEPARTNAME, VFEE_OPERATENAME, NBACK_SL }; this.Rows.Add(row); return(row); }
public RowChangeEventV_COST_INFO(RowV_COST_INFO row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
/// /// 删除指定的记录。 /// public void RemoveRowV_COST_INFO(RowV_COST_INFO row) { this.Rows.Remove(row); }
/// /// 增加新一条新记录。 /// public void AddRowV_COST_INFO(RowV_COST_INFO row) { this.Rows.Add(row); }