@tomei/rental
Version:
Tomei Rental Package
9 lines (8 loc) • 487 B
TypeScript
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>;
}