public IEnumerable <GetComment> GetAllEventComment(int eventId)
 {
     return(_commentRepository.GetAll(eventId));
 }
Beispiel #2
0
 public IEnumerable <GetReply> GetAllCommentReply(int commentId)
 {
     return(_replyRepository.GetAll(commentId));
 }
 public IEnumerable <GetBooking> GetAllEventBooking(int eventId)
 {
     return(_bookingRepository.GetAll(eventId));
 }