Exemplo n.º 1
0
 public DSPrepPed.PrepPedRow AddPrepPedRow(string NroOV, string NroLinea, int TipoLinea, string EstLinea, string Codigo, string Desc1, string Desc2, decimal CantOrden, decimal CantPrep, DateTime FechaPrep, string Expedicion, string NroRemito, DateTime FechaExp, decimal Producto, string Cliente, string NomCli, string OCompra, DateTime FechaOV)
 {
     DSPrepPed.PrepPedRow row = (DSPrepPed.PrepPedRow) this.NewRow();
     row.ItemArray = new object[] {
         NroOV, NroLinea, TipoLinea, EstLinea, Codigo, Desc1, Desc2, CantOrden, CantPrep, FechaPrep, Expedicion, NroRemito, FechaExp, Producto, Cliente, NomCli,
         OCompra, FechaOV
     };
     this.Rows.Add(row);
     return(row);
 }
Exemplo n.º 2
0
 public PrepPedRowChangeEvent(DSPrepPed.PrepPedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemovePrepPedRow(DSPrepPed.PrepPedRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddPrepPedRow(DSPrepPed.PrepPedRow row)
 {
     this.Rows.Add(row);
 }