예제 #1
0
            public VokabelnRow AddVokabelnRow(string Chinesisch, string Pinyin, string German, int Chapter, System.DateTime Date)
            {
                VokabelnRow rowVokabelnRow = ((VokabelnRow)(this.NewRow()));

                rowVokabelnRow.ItemArray = new object[] {
                    Chinesisch,
                    Pinyin,
                    German,
                    Chapter,
                    Date,
                    null
                };
                this.Rows.Add(rowVokabelnRow);
                return(rowVokabelnRow);
            }
예제 #2
0
 public VokabelnRowChangeEvent(VokabelnRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveVokabelnRow(VokabelnRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddVokabelnRow(VokabelnRow row)
 {
     this.Rows.Add(row);
 }