Exemplo n.º 1
0
        public bool IsAuthenticated()
        {
            bool isAuthenticated = false;

            if (StaticDataFacade.Contains(StaticDataKeys.AuthenticatedData))
            {
                isAuthenticated = true;
            }

            return(isAuthenticated);
        }