public tbArmadoresRow AddtbArmadoresRow(int nIdArmador, string strNome)
            {
                tbArmadoresRow rowtbArmadoresRow = ((tbArmadoresRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    nIdArmador,
                    strNome
                };
                rowtbArmadoresRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbArmadoresRow);
                return(rowtbArmadoresRow);
            }
 public tbArmadoresRowChangeEvent(tbArmadoresRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovetbArmadoresRow(tbArmadoresRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddtbArmadoresRow(tbArmadoresRow row)
 {
     this.Rows.Add(row);
 }