示例#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));
 }