コード例 #1
0
ファイル: DataTmpOVExped.cs プロジェクト: tuxevil/Grundfos
 public DataTmpOVExped.PC1TmpOVExpedRow AddPC1TmpOVExpedRow(string NroOV, int TipoOV, string Cliente, string NomCli, string OCompra, int CodMetEnt, string DescMetEnt, string LugarEnt, DateTime FechaOV, DateTime FechaEnt, DateTime FechaPrep, DateTime FechaExp, DateTime FechaRecConfCli, string NroRemito, string NroFactura, decimal PesoNeto, decimal PesoBruto, decimal Volumen, decimal Bultos, string CodProd, string Desc1, string Desc2, decimal Cantidad)
 {
     DataTmpOVExped.PC1TmpOVExpedRow row = (DataTmpOVExped.PC1TmpOVExpedRow) this.NewRow();
     row.ItemArray = new object[] {
         NroOV, TipoOV, Cliente, NomCli, OCompra, CodMetEnt, DescMetEnt, LugarEnt, FechaOV, FechaEnt, FechaPrep, FechaExp, FechaRecConfCli, NroRemito, NroFactura, PesoNeto,
         PesoBruto, Volumen, Bultos, CodProd, Desc1, Desc2, Cantidad
     };
     this.Rows.Add(row);
     return(row);
 }
コード例 #2
0
ファイル: DataTmpOVExped.cs プロジェクト: tuxevil/Grundfos
 public void RemovePC1TmpOVExpedRow(DataTmpOVExped.PC1TmpOVExpedRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #3
0
ファイル: DataTmpOVExped.cs プロジェクト: tuxevil/Grundfos
 public void AddPC1TmpOVExpedRow(DataTmpOVExped.PC1TmpOVExpedRow row)
 {
     this.Rows.Add(row);
 }
コード例 #4
0
ファイル: DataTmpOVExped.cs プロジェクト: tuxevil/Grundfos
 public PC1TmpOVExpedRowChangeEvent(DataTmpOVExped.PC1TmpOVExpedRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }