Exemplo n.º 1
0
        public async Task <UserProfileViewModel> Handle(ProfileDetailsQuery request, CancellationToken cancellationToken)
        {
            var userProfile = await profileReader.ReadProfileAsync(request.Username);

            return(userProfile);
        }