Beispiel #1
0
            public tbREsRow AddtbREsRow(int nIdExportador, int nIdRe, string mstrNumero, int nIdSD, System.DateTime dtEmissao, int nAnexos)
            {
                tbREsRow rowtbREsRow = ((tbREsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    nIdExportador,
                    nIdRe,
                    mstrNumero,
                    nIdSD,
                    dtEmissao,
                    nAnexos
                };
                rowtbREsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbREsRow);
                return(rowtbREsRow);
            }
Beispiel #2
0
 public tbREsRowChangeEvent(tbREsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemovetbREsRow(tbREsRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddtbREsRow(tbREsRow row)
 {
     this.Rows.Add(row);
 }