public AppProfileRow AddAppProfileRow(string ParamName, string ParamValue)
            {
                AppProfileRow rowAppProfileRow = ((AppProfileRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ParamName,
                    ParamValue
                };
                rowAppProfileRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowAppProfileRow);
                return(rowAppProfileRow);
            }
 public void RemoveAppProfileRow(AppProfileRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddAppProfileRow(AppProfileRow row)
 {
     this.Rows.Add(row);
 }
 public AppProfileRowChangeEvent(AppProfileRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public AppProfileRowChangeEvent(AppProfileRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveAppProfileRow(AppProfileRow row) {
     this.Rows.Remove(row);
 }
 public void AddAppProfileRow(AppProfileRow row) {
     this.Rows.Add(row);
 }