Ejemplo n.º 1
0
        private bool validaChave(AuthenticationSoapHeader authentication)
        {
            Adaptador adpt = new Adaptador();

            if (adpt.validaAcesso(authentication))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
 private bool validaChave(AuthenticationSoapHeader authentication)
 {
     Adaptador adpt = new Adaptador();
     if (adpt.validaAcesso(authentication))
     {
         return true;
     }
     else
     {
         return false;
     }
 }