Exemplo n.º 1
0
        public AccountDTO GetAccount(string username)
        {
            var acc = GetAccountForUser(username);

            if (acc == null)
            {
                return(null);
            }
            return(AccountConverter.ToDTO(acc));
        }