Exemplo n.º 1
0
 public IEnumerable <GetComment> GetAllUserComment(int userId)
 {
     return(_commentRepository.GetAllByUser(userId));
 }
Exemplo n.º 2
0
 public IEnumerable <GetReply> GetAllUserReply(int userId)
 {
     return(_replyRepository.GetAllByUser(userId));
 }
Exemplo n.º 3
0
 public IEnumerable <GetBooking> GetAllUserBooking(int userId)
 {
     return(_bookingRepository.GetAllByUser(userId));
 }