public async Task <ApiResponse <GetAllResponse <ProductRentalHistoryOutput> > > GetRentalHistory(Guid productId)
 {
     return(await ReadOnlyController.GetRentalHistory(productId));
 }
 public async Task <ApiResponse <GetAllResponse <RenterRentalHistoryOutput> > > GetRentalHistory(Guid renterId)
 {
     return(await ReadOnlyController.GetRentalHistory(renterId));
 }