コード例 #1
0
ファイル: DSPrepPed.cs プロジェクト: tuxevil/Grundfos
 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);
 }
コード例 #2
0
ファイル: DSPrepPed.cs プロジェクト: tuxevil/Grundfos
 public PrepPedRowChangeEvent(DSPrepPed.PrepPedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
ファイル: DSPrepPed.cs プロジェクト: tuxevil/Grundfos
 public void RemovePrepPedRow(DSPrepPed.PrepPedRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
ファイル: DSPrepPed.cs プロジェクト: tuxevil/Grundfos
 public void AddPrepPedRow(DSPrepPed.PrepPedRow row)
 {
     this.Rows.Add(row);
 }