Esempio n. 1
0
            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);
            }
Esempio n. 2
0
 public Tb_ClientesRowChangeEvent(Tb_ClientesRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveTb_ClientesRow(Tb_ClientesRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddTb_ClientesRow(Tb_ClientesRow row)
 {
     this.Rows.Add(row);
 }