public tbStatisticDataManipulatorsRow AddtbStatisticDataManipulatorsRow(int nIdDataManipulator, string strName, string mstrData)
            {
                tbStatisticDataManipulatorsRow rowtbStatisticDataManipulatorsRow = ((tbStatisticDataManipulatorsRow)(this.NewRow()));

                rowtbStatisticDataManipulatorsRow.ItemArray = new object[] {
                    nIdDataManipulator,
                    strName,
                    mstrData
                };
                this.Rows.Add(rowtbStatisticDataManipulatorsRow);
                return(rowtbStatisticDataManipulatorsRow);
            }
Ejemplo n.º 2
0
 public tbStatisticDataManipulatorsRowChangeEvent(tbStatisticDataManipulatorsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemovetbStatisticDataManipulatorsRow(tbStatisticDataManipulatorsRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddtbStatisticDataManipulatorsRow(tbStatisticDataManipulatorsRow row)
 {
     this.Rows.Add(row);
 }