Ejemplo n.º 1
0
        public IList getCommentsByIncidentID(int inciID)
        {
            IList comments = new List <IncidentComment>();
            var   comment  = dataContext.sp_GetCommentsByIncidentID(inciID);

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