public FeedbackDialogViewModel()
		{
			Comment = new Comment();
			_context = ServiceFactory.Create();
			_context.Comments.Add(Comment);
		}
		public MainPageViewModel()
		{
			_commentsQueue = new Queue<Comment>();
			_allCommentContext = ServiceFactory.Create();
			AllComments = _allCommentContext.Comments;
		}