Exemplo n.º 1
0
        public UserModel GetByAccount(UserToken token)
        {
            int accountID = accountBiz.Get(token);

            return(accountID == -1 ? null : userCache.GetByAccountID(accountID));
        }