Ejemplo n.º 1
0
 public bool DeleteComment(CommentDto commentDto)
 {
     try
     {
         CommentDAO.Execute(Common.ConvertToComments(commentDto), Entity.COMMENT, ExecuteType.REMOVE);
         return(true);
     }
     catch (Exception e)
     {
         return(false);
     }
 }