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

@Injectable()
export class CustomerTreatmentPlanRepository extends BaseAbstractRepository<CustomerTreatmentPlan> {
  constructor(
    @InjectRepository(CustomerTreatmentPlan)
    private readonly customerTreatmentPlanRepository: Repository<CustomerTreatmentPlan>,
  ) {
    super(customerTreatmentPlanRepository)
  }
}
