Пример #1
0
 public IEnumerable <GetComment> GetAllUserComment(int userId)
 {
     return(_commentRepository.GetAllByUser(userId));
 }
Пример #2
0
 public IEnumerable <GetReply> GetAllUserReply(int userId)
 {
     return(_replyRepository.GetAllByUser(userId));
 }
Пример #3
0
 public IEnumerable <GetBooking> GetAllUserBooking(int userId)
 {
     return(_bookingRepository.GetAllByUser(userId));
 }