Ejemplo n.º 1
0
        public DataTable ColaPendiente(int robotId)
        {
            DL_GenericObj.CrearComando("sp_RobotColaPendiente", true);
            DL_GenericObj.AgregarParametro("@robotId", robotId);

            return(DL_GenericObj.CargarDataTable());
        }
Ejemplo n.º 2
0
 public DataTable GetListTxtGenerado(string tipo, string fecha)
 {
     DL_GenericObj.CrearComando("SP_PasePed_ListarTxt", true);
     DL_GenericObj.AgregarParametro("@tipo", tipo);
     DL_GenericObj.AgregarParametro("@EnvioFTPFecha", fecha);
     return(DL_GenericObj.CargarDataTable());
 }
Ejemplo n.º 3
0
 public DataTable GetCorreoDatos(int procesoId)
 {
     DL_GenericObj.CrearComando("SP_AGENTE_GetDatosCorreo", true);
     DL_GenericObj.AgregarParametro("ProcesoId", procesoId);
     return(DL_GenericObj.CargarDataTable());
 }
Ejemplo n.º 4
0
 public DataTable GetCorreoNotificar()
 {
     DL_GenericObj.CrearComando("SP_AD_GetCorreoGerente", true);
     return(DL_GenericObj.CargarDataTable());
 }