void GetComments(int helpRequestID)
        {
            var commentGetter = CommentSystemManager.NewCommentGetter();

            commentGetter.Result += (status, comments, users) =>
            {
                Device.BeginInvokeOnMainThread(async() =>
                {
                    if (status == CommentGetStatus.Success)
                    {
                        this.users = users;
                        Items.Clear();
                        Items.Add(viewModel);
                        comments.ForEach(comment =>
                        {
                            Items.Add(new CommentModel
                            {
                                Name          = users[comment.Username].FirstName + " " + users[comment.Username].LastName,
                                Username      = comment.Username,
                                Message       = comment.Message,
                                CreatedDate   = comment.CreatedDate.ToFullDate(false),
                                Comment       = comment,
                                ImageLocation = users[comment.Username].ProfilePictureLocation
                            });
                        });
                    }
                    else
                    {
                        await DisplayAlert("Klaida", "Nepavyko įkelti komentarų", "OK");
                    }
                    CommentList.IsRefreshing = false;
                });
            };
            commentGetter.Get(helpRequestID);
        }