public umfragenRow AddumfragenRow(string Titel, string Beschreibung, System.DateTime Datum_Beginn, System.DateTime Datum_Ende, int r_userID, int Onlinestatus)
            {
                umfragenRow rowumfragenRow = ((umfragenRow)(this.NewRow()));

                rowumfragenRow.ItemArray = new object[] {
                    null,
                    Titel,
                    Beschreibung,
                    Datum_Beginn,
                    Datum_Ende,
                    r_userID,
                    Onlinestatus
                };
                this.Rows.Add(rowumfragenRow);
                return(rowumfragenRow);
            }
 public umfragenRowChangeEvent(umfragenRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveumfragenRow(umfragenRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddumfragenRow(umfragenRow row)
 {
     this.Rows.Add(row);
 }