public async Task <ApiResponse <GetLastProductRentOutput> > GetLastRent(Guid productId)
 {
     return(await ReadOnlyController.GetLastRent(productId));
 }
 public async Task <ApiResponse <GetLastRenterRentOutput> > GetLastRent(Guid renterId)
 {
     return(await ReadOnlyController.GetLastRent(renterId));
 }