Ejemplo n.º 1
0
        private void LoadComment(Posts posts)
        {
            CommentsList.Clear();

            List <Comments> comments = _dr.GetComment(posts);

            foreach (Comments u in comments)
            {
                CommentsList.Add(u);
            }
        }