import { Injectable } from "@nestjs/common"
import { InjectRepository } from "@nestjs/typeorm"
import { Repository } from "typeorm"
import { BaseAbstractRepository } from "../../../common/repository/base.repository"
import { ClockInRecord } from "../entities/clock-in-record.entity"

@Injectable()
export class ClockInRecordRepository extends BaseAbstractRepository<ClockInRecord> {
  constructor(
    @InjectRepository(ClockInRecord)
    private readonly clockInRecordRepository: Repository<ClockInRecord>,
  ) {
    super(clockInRecordRepository)
  }
}
