Exemplo n.º 1
0
            public ListadoEmbarqueRow AddListadoEmbarqueRow(string CodigoBarras, decimal Titulo, decimal Piezas, string CBGandhi)
            {
                ListadoEmbarqueRow rowListadoEmbarqueRow = ((ListadoEmbarqueRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    CodigoBarras,
                    Titulo,
                    Piezas,
                    CBGandhi
                };
                rowListadoEmbarqueRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListadoEmbarqueRow);
                return(rowListadoEmbarqueRow);
            }
Exemplo n.º 2
0
 public ListadoEmbarqueRowChangeEvent(ListadoEmbarqueRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveListadoEmbarqueRow(ListadoEmbarqueRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddListadoEmbarqueRow(ListadoEmbarqueRow row)
 {
     this.Rows.Add(row);
 }