예제 #1
0
        public bool ValidarAcesso(AdmSistema x)
        {
            var aux = acessar.ValidarUsuarioSenha(x.LoginFuncionario, x.SenhaFuncionario);

            if (aux!=null)
            {
                return true;
            }
            else
                return false;
        }
예제 #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     x = new AdmSistema();
 }
예제 #3
0
 public bool ValidarAcessoSistema(AdmSistema x)
 {
     acesso = new AcessoSistema();
     return(acesso.ValidarAcesso(x));
 }
예제 #4
0
 public bool ValidarAcessoSistema(AdmSistema x)
 {
     acesso = new AcessoSistema();
     return acesso.ValidarAcesso(x);
 }