コード例 #1
0
 protected void OnCodigo(DocumentoParametroEventArgs e)
 {
     if (Codigo != null)
     {
         Codigo(this, e);
     }
 }
コード例 #2
0
 protected void OnVencimiento(DocumentoParametroEventArgs e)
 {
     if (Vencimiento != null)
     {
         Vencimiento(this, e);
     }
 }
コード例 #3
0
 protected void OnCierre(DocumentoParametroEventArgs e)
 {
     if (Cierre != null)
     {
         Cierre(this, e);
     }
 }
コード例 #4
0
 protected void OnFecha(DocumentoParametroEventArgs e)
 {
     if (Fecha != null)
     {
         Fecha(this, e);
     }
 }
コード例 #5
0
 protected void OnPresentacion(DocumentoParametroEventArgs e)
 {
     if (Presentacion != null)
     {
         Presentacion(this, e);
     }
 }
コード例 #6
0
 protected void OnBase(DocumentoParametroEventArgs e)
 {
     if (Base != null)
     {
         Base(this, e);
     }
 }
コード例 #7
0
 protected void OnPlanta(DocumentoParametroEventArgs e)
 {
     if (Planta != null)
     {
         Planta(this, e);
     }
 }
コード例 #8
0
 protected void OnEquipo(DocumentoParametroEventArgs e)
 {
     if (Equipo != null)
     {
         Equipo(this, e);
     }
 }
コード例 #9
0
 protected void OnTransportista(DocumentoParametroEventArgs e)
 {
     if (Transportista != null)
     {
         Transportista(this, e);
     }
 }
コード例 #10
0
 protected void OnEmpleado(DocumentoParametroEventArgs e)
 {
     if (Empleado != null)
     {
         Empleado(this, e);
     }
 }
コード例 #11
0
 protected void OnParametro(DocumentoParametroEventArgs e)
 {
     if (Parametro != null)
     {
         Parametro(this, e);
     }
 }
コード例 #12
0
 protected void OnDescripcion(DocumentoParametroEventArgs e)
 {
     if (Descripcion != null)
     {
         Descripcion(this, e);
     }
 }