Ejemplo n.º 1
0
        public CurrentUser ValidateAuthFull(string token, ICache cache)
        {
            if (_userFull.IsNull())
            {
                _userFull = HelperValidateAuth.ValidateAuthFull(token, cache);
            }

            return(_userFull);
        }
Ejemplo n.º 2
0
        public CurrentUser ValidateAuthModules(string token, ICache cache)
        {
            if (_userModules.IsNull())
            {
                _userModules = HelperValidateAuth.ValidateAuthModules(token, cache);
            }

            return(_userModules);
        }
Ejemplo n.º 3
0
        public CurrentUser ValidateAuthParameters(string token, ICache cache)
        {
            if (_userParameters.IsNull())
            {
                _userParameters = HelperValidateAuth.ValidateAuthParameters(token, cache);
            }

            return(_userParameters);
        }
Ejemplo n.º 4
0
        public CurrentUser ValidateAuthSimple(string token, ICache cache)
        {
            if (_userSimple.IsNull())
            {
                _userSimple = HelperValidateAuth.ValidateAuthSimple(token, cache);
            }

            return(_userSimple);
        }