UNPKG

@tomei/rental

Version:
9 lines (8 loc) 487 B
import { RepositoryBase, IRepositoryBase } from '@tomei/general'; import { RentalPriceModel } from '../../models/rental-price.entity'; export declare class RentalPriceRepository extends RepositoryBase<RentalPriceModel> implements IRepositoryBase<RentalPriceModel> { constructor(); findByPk(id: string, transaction?: any): Promise<RentalPriceModel | null>; delete(RentalPriceId: string, dbTransaction?: any): Promise<void>; findAndCountAll(options?: any): Promise<any>; }