public tb_ClientesRow Addtb_ClientesRow(string nome)
            {
                tb_ClientesRow rowtb_ClientesRow = ((tb_ClientesRow)(this.NewRow()));

                rowtb_ClientesRow.ItemArray = new object[] {
                    null,
                    nome
                };
                this.Rows.Add(rowtb_ClientesRow);
                return(rowtb_ClientesRow);
            }
 public tb_ClientesRowChangeEvent(tb_ClientesRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void Removetb_ClientesRow(tb_ClientesRow row)
 {
     this.Rows.Remove(row);
 }
 public void Addtb_ClientesRow(tb_ClientesRow row)
 {
     this.Rows.Add(row);
 }