Example #1
0
 public int UpdateCorreoId(int procesoId, int correoId)
 {
     DL_GenericObj.CrearComando("SP_AGENTE_UpdateIdCorreo", true);
     DL_GenericObj.AgregarParametro("ProcesoId", procesoId);
     DL_GenericObj.AgregarParametro("IdCorreo", correoId);
     return(DL_GenericObj.EjecutaComando());
 }
        public void ValidaColaProgramada(int robotId)
        {
            DL_GenericObj.CrearComando("sp_RobotColaDesdeProgramacion", true);
            DL_GenericObj.AgregarParametro("@robotId", robotId);

            DL_GenericObj.EjecutaComando();
        }
 public void UpdateEnvioFTP(string codigo, string fecha)
 {
     DL_GenericObj.CrearComando("SP_PasePed_UpdateEnvioFTP", true);
     DL_GenericObj.AgregarParametro("@codigo", codigo);
     DL_GenericObj.AgregarParametro("@EnvioFTPFecha", fecha);
     DL_GenericObj.EjecutaComando();
 }