Exemplo n.º 1
0
 public IEnumerable <GetComment> GetAllEventComment(int eventId)
 {
     return(_commentRepository.GetAll(eventId));
 }
Exemplo n.º 2
0
 public IEnumerable <GetReply> GetAllCommentReply(int commentId)
 {
     return(_replyRepository.GetAll(commentId));
 }
Exemplo n.º 3
0
 public IEnumerable <GetBooking> GetAllEventBooking(int eventId)
 {
     return(_bookingRepository.GetAll(eventId));
 }