public DataTable ColaPendiente(int robotId) { DL_GenericObj.CrearComando("sp_RobotColaPendiente", true); DL_GenericObj.AgregarParametro("@robotId", robotId); return(DL_GenericObj.CargarDataTable()); }
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()); }
public DataTable GetCorreoDatos(int procesoId) { DL_GenericObj.CrearComando("SP_AGENTE_GetDatosCorreo", true); DL_GenericObj.AgregarParametro("ProcesoId", procesoId); return(DL_GenericObj.CargarDataTable()); }
public DataTable GetCorreoNotificar() { DL_GenericObj.CrearComando("SP_AD_GetCorreoGerente", true); return(DL_GenericObj.CargarDataTable()); }