Exemplo n.º 1
0
        ///
        /// 增加新一条新记录。
        ///
        public RowWJ_RECORD AddRowWJ_RECORD(System.String VID, System.String VWJID, System.String VWJMC, System.String VQUESID, System.String VINPUTID, System.DateTime DCREATE, System.String VQUESNAME, System.String VANSID, System.String VANSNAME, System.String VDJH)
        {
            RowWJ_RECORD row = ((RowWJ_RECORD)(this.NewRow()));

            row.ItemArray = new object[] { VID, VWJID, VWJMC, VQUESID, VINPUTID, DCREATE, VQUESNAME, VANSID, VANSNAME, VDJH };
            this.Rows.Add(row);
            return(row);
        }
Exemplo n.º 2
0
 public RowChangeEventWJ_RECORD(RowWJ_RECORD row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 ///
 /// 删除指定的记录。
 ///
 public void RemoveRowWJ_RECORD(RowWJ_RECORD row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 ///
 /// 增加新一条新记录。
 ///
 public void AddRowWJ_RECORD(RowWJ_RECORD row)
 {
     this.Rows.Add(row);
 }