Пример #1
0
        public IList getCommentsByEventID(int eventID)
        {
            IList comments = new List <EventComment>();
            var   comment  = dataContext.sp_GetCommentsByEventID(eventID);

            comments = comment.ToList();
            return(comments);
        }