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