Esempio n. 1
0
        public TMUsuario BusquedaUsuario(String strUsuario, String strMail)
        {
            TMUsuario objTMUsuario = new TMUsuario();

            try
            {
                Dictionary <string, object> parameter = new Dictionary <string, object>
                {
                    { "@strUsuario", strUsuario },
                    { "@strMail", strMail }
                };
                using (IDataReader oReader = SqlHelper.Instance.ExecuteReader("USP_GETBYUSER_TMUSUARIO", parameter))
                {
                    while (oReader.Read())
                    {
                        objTMUsuario = ReaderUtility.MapearObjeto <TMUsuario>(oReader);
                    }
                }
                objTMUsuario.ErrorMensaje = string.Empty;
                objTMUsuario.ErrorCode    = string.Empty;
            }
            catch (Exception ex)
            {
                objTMUsuario.ErrorMensaje = ex.Message;
                objTMUsuario.ErrorCode    = "public TMUsuario LoginEPJ(String strUsuario, String strPassword)";
                throw;
            }
            return(objTMUsuario);
        }
Esempio n. 2
0
        public List <TMPersona> ListarPersona()
        {
            List <TMPersona> lstTMPersona = new List <TMPersona>();

            try
            {
                using (IDataReader oReader = SqlHelper.Instance.ExecuteReader("USP_TMPERSONA"))
                {
                    while (oReader.Read())
                    {
                        lstTMPersona.Add(ReaderUtility.MapearObjeto <TMPersona>(oReader));
                    }
                }
            }
            catch (Exception ex)
            {
                lstTMPersona = null;
                throw;
            }
            return(lstTMPersona);
        }
Esempio n. 3
0
        public List <TMPagoMensual> ListarPagoMensual()
        {
            List <TMPagoMensual> lstTMPagoMensual = new List <TMPagoMensual>();

            try
            {
                using (IDataReader oReader = SqlHelper.Instance.ExecuteReader("USP_TMPAGOMENSUAL"))
                {
                    while (oReader.Read())
                    {
                        lstTMPagoMensual.Add(ReaderUtility.MapearObjeto <TMPagoMensual>(oReader));
                    }
                }
            }
            catch (Exception ex)
            {
                lstTMPagoMensual = null;
                throw;
            }
            return(lstTMPagoMensual);
        }
Esempio n. 4
0
        public List <TMUsuario> ListarUsuario()
        {
            List <TMUsuario> lstTMUsuario = new List <TMUsuario>();

            try
            {
                using (IDataReader oReader = SqlHelper.Instance.ExecuteReader("USP_TMUSUARIO"))
                {
                    while (oReader.Read())
                    {
                        lstTMUsuario.Add(ReaderUtility.MapearObjeto <TMUsuario>(oReader));
                    }
                }
            }
            catch (Exception ex)
            {
                lstTMUsuario = null;
                throw;
            }
            return(lstTMUsuario);
        }