Example #1
0
            public tbIdiomasRow AddtbIdiomasRow(int idIdioma, string mstrIdioma)
            {
                tbIdiomasRow rowtbIdiomasRow = ((tbIdiomasRow)(this.NewRow()));

                rowtbIdiomasRow.ItemArray = new object[] {
                    idIdioma,
                    mstrIdioma
                };
                this.Rows.Add(rowtbIdiomasRow);
                return(rowtbIdiomasRow);
            }
Example #2
0
 public tbIdiomasRowChangeEvent(tbIdiomasRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemovetbIdiomasRow(tbIdiomasRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddtbIdiomasRow(tbIdiomasRow row)
 {
     this.Rows.Add(row);
 }
 public tbIdiomasRowChangeEvent(tbIdiomasRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }