예제 #1
0
        /*REALIZA O LOGIN DO USUARIO*/
        public bool LoginUsuarioSistema(string nome, string senha)
        {
            UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

            try
            {
                int userId = DAL.dbValidarUsuarioSistema(nome, senha);

                //Se for igual a -1 é porque a autenticação falhou
                if (userId.Equals(-1))
                {
                    return false;
                }

                //Autenticação bem sucedida, insere na sessão de login o usuario
                else
                {
                    //COLOCA O USER NA SESSAO
                    SessaoUsuarioSistema = DAL.dbObterUsuarioSistema(userId);

                    return true;
                }

            }

            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #2
0
        /*INSERE UM NOVO USUARIO*/
        public bool CadastrarUsuarioSistema(string username, string senha)
        {
            UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

            try
            {
                //Caso o e-mail esteja disponivel, insere o usuario na base
                if (DAL.dbUsuarioDisponivel(username))
                {
                    //string encyptedPass;
                    //DO ENCRYPTION SHIT

                    DAL.dbInserirUsuarioSistema(username, senha); //TODO: PASSAR SENHA ENCRYPTADA

                    return true;
                }

                else
                {
                    return false;
                }

            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #3
0
        /*INSERE UM NOVO USUARIO*/
        public bool CadastrarUsuarioSistema(string username, string senha)
        {
            UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

            try
            {
                //Caso o e-mail esteja disponivel, insere o usuario na base
                if (DAL.dbUsuarioDisponivel(username))
                {
                    //string encyptedPass;
                    //DO ENCRYPTION SHIT

                    DAL.dbInserirUsuarioSistema(username, senha); //TODO: PASSAR SENHA ENCRYPTADA

                    return(true);
                }

                else
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #4
0
        /*REALIZA O LOGIN DO USUARIO*/
        public bool LoginUsuarioSistema(string nome, string senha)
        {
            UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

            try
            {
                int userId = DAL.dbValidarUsuarioSistema(nome, senha);

                //Se for igual a -1 é porque a autenticação falhou
                if (userId.Equals(-1))
                {
                    return(false);
                }

                //Autenticação bem sucedida, insere na sessão de login o usuario
                else
                {
                    //COLOCA O USER NA SESSAO
                    SessaoUsuarioSistema = DAL.dbObterUsuarioSistema(userId);

                    return(true);
                }
            }

            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #5
0
        /*LISTAR OS USUARIOS*/
        public List<UsuarioSistema> ListarUsuariosSistema()
        {
            try
            {
                UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

                return DAL.dbListarUsuariosSistema();
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #6
0
        /*LISTAR OS USUARIOS*/
        public List <UsuarioSistema> ListarUsuariosSistema()
        {
            try
            {
                UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

                return(DAL.dbListarUsuariosSistema());
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #7
0
        /*REMOVE UM USUARIO*/
        public void RemoverUsuarioSistema(int userId)
        {
            UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

            try
            {
                DAL.dbRemoverUsuarioSistema(userId);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
예제 #8
0
        /*REMOVE UM USUARIO*/
        public void RemoverUsuarioSistema(int userId)
        {
            UsuarioSistemaDAL DAL = new UsuarioSistemaDAL(conStr);

            try
            {
                DAL.dbRemoverUsuarioSistema(userId);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }