import { mySqlConnection } from "./mySqlConnection"; import { RepositoryBase } from "./RepositoryBase"; import * as dto from "../dto"; export declare class ExamFactRepository extends RepositoryBase { readonly tableName: string; protected connection: mySqlConnection; private processResults(obj, query); get(obj: dto.ExamFact): Promise; create(obj: dto.ExamFact): Promise; update(obj: dto.ExamFact): Promise; delete(obj: dto.ExamFact): Promise; removeAll(obj: dto.Exam): Promise; }