Ejemplo n.º 1
0
 public int AddComment(string itemTypeId, int itemId,
                       string commentText, int severityId)
 {
     return(CommentsController.AddComment(itemTypeId, itemId, commentText, severityId));
 }
Ejemplo n.º 2
0
 public int DeleteComment(int commentId)
 {
     return(CommentsController.DeleteComment(commentId));
 }
Ejemplo n.º 3
0
 public DataSet GetComments(int userId, string itemTypeId, int itemId)
 {
     return(CommentsController.GetComments(userId, itemTypeId, itemId));
 }