public IEnumerable <GetComment> GetAllUserComment(int userId) { return(_commentRepository.GetAllByUser(userId)); }
public IEnumerable <GetReply> GetAllUserReply(int userId) { return(_replyRepository.GetAllByUser(userId)); }
public IEnumerable <GetBooking> GetAllUserBooking(int userId) { return(_bookingRepository.GetAllByUser(userId)); }