Example #1
0
        ///
        /// 增加新一条新记录。
        ///
        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);
        }
Example #2
0
 public RowChangeEventSIGNIN(RowSIGNIN row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 ///
 /// 删除指定的记录。
 ///
 public void RemoveRowSIGNIN(RowSIGNIN row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 ///
 /// 增加新一条新记录。
 ///
 public void AddRowSIGNIN(RowSIGNIN row)
 {
     this.Rows.Add(row);
 }