import { Injectable } from "@nestjs/common"
import { InjectRepository } from "@nestjs/typeorm"
import { Repository } from "typeorm"
import { BaseAbstractRepository } from "../../../common/repository/base.repository"
import { CustomerTreatmentPlanImage } from "../entities/customer_treatment_images.entity"

@Injectable()
export class CustomerTreatmentImagesRepository extends BaseAbstractRepository<CustomerTreatmentPlanImage> {
  constructor(
    @InjectRepository(CustomerTreatmentPlanImage)
    private readonly customerTreatmentImagesRepository: Repository<CustomerTreatmentPlanImage>,
  ) {
    super(customerTreatmentImagesRepository)
  }
}
