@tomei/rental 0.17.4-dev.10 → 0.17.4-dev.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/components/joint-hirer/joint-hirer.js +1 -2
- package/dist/src/components/joint-hirer/joint-hirer.js.map +1 -1
- package/dist/src/components/rental/rental.js +0 -1
- package/dist/src/components/rental/rental.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/joint-hirer/joint-hirer.ts +2 -2
- package/src/components/rental/rental.ts +0 -1
package/package.json
CHANGED
|
@@ -236,8 +236,8 @@ export class JointHirer extends ObjectBase {
|
|
|
236
236
|
'RentalId is empty.',
|
|
237
237
|
);
|
|
238
238
|
}
|
|
239
|
-
|
|
240
|
-
this._Rental = await Rental.init(this.RentalId
|
|
239
|
+
|
|
240
|
+
this._Rental = await Rental.init(dbTransaction, this.RentalId);
|
|
241
241
|
|
|
242
242
|
if (!this._Rental) {
|
|
243
243
|
throw new ClassError(
|