Example #1
0
 public bool AddComment([FromBody] CommentVisiterDTO commentVisiter)
 {
     CommentVisiterBL.Add(commentVisiter);
     return(true);
 }
Example #2
0
        public List <CommentVisiterDTO> GetAllComment()
        {
            var l = CommentVisiterBL.GetAll();

            return(l);
        }