public void RemoveLenguajesRow(LenguajesRow row)
 {
     this.Rows.Remove(row);
 }
 public LenguajesRowChangeEvent(LenguajesRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddLenguajesRow(LenguajesRow row)
 {
     this.Rows.Add(row);
 }