Esempio n. 1
0
 public DataRMDesp.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, string LugarEnt, string MetEnvio, string Bultos, string PesoNeto, string PesoBruto, string Volumen, string HoraExp)
 {
     DataRMDesp.PrepPedRow row = (DataRMDesp.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, LugarEnt, MetEnvio, Bultos, PesoNeto, PesoBruto, Volumen, HoraExp
     };
     this.Rows.Add(row);
     return(row);
 }
Esempio n. 2
0
 public void RemovePrepPedRow(DataRMDesp.PrepPedRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 3
0
 public void AddPrepPedRow(DataRMDesp.PrepPedRow row)
 {
     this.Rows.Add(row);
 }
Esempio n. 4
0
 public PrepPedRowChangeEvent(DataRMDesp.PrepPedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }