Ejemplo n.º 1
0
        public IList getCommentsBySPID(int SPID)
        {
            IList comments = new List <EventComment>();
            var   comment  = dataContext.sp_GetCommentsByServiceProjectID(SPID);

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