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