Skip to content

Commit 68036aa

Browse files
lint
1 parent e4bc1ef commit 68036aa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

backend/typescript/services/implementations/reviewedApplicantRecordService.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ import {
99
import IReviewApplicantRecordService from "../interfaces/IReviewedApplicantRecordService";
1010

1111
class ReviewedApplicantRecordService implements IReviewApplicantRecordService {
12+
/* eslint-disable class-methods-use-this */
1213
async createReviewedApplicantRecord(
1314
dto: CreateReviewedApplicantRecordDTO,
1415
): Promise<ReviewedApplicantRecordDTO> {
1516
const record = await ReviewedApplicantRecord.create(dto);
1617
return record.toJSON() as ReviewedApplicantRecordDTO;
1718
}
1819

20+
/* eslint-disable class-methods-use-this */
1921
async bulkCreateReviewedApplicantRecord(
2022
createReviewedApplicantRecordDTOs: CreateReviewedApplicantRecordDTO[],
2123
): Promise<ReviewedApplicantRecordDTO[]> {
@@ -32,6 +34,7 @@ class ReviewedApplicantRecordService implements IReviewApplicantRecordService {
3234
);
3335
}
3436

37+
/* eslint-disable class-methods-use-this */
3538
async deleteReviewedApplicantRecord(
3639
deleteReviewedApplicantRecord: DeleteReviewedApplicantRecordDTO,
3740
): Promise<ReviewedApplicantRecordDTO> {
@@ -48,6 +51,7 @@ class ReviewedApplicantRecordService implements IReviewApplicantRecordService {
4851
return record.toJSON() as ReviewedApplicantRecordDTO;
4952
}
5053

54+
/* eslint-disable class-methods-use-this */
5155
async bulkDeleteReviewedApplicantRecord(
5256
deleteReviewedApplicantRecords: DeleteReviewedApplicantRecordDTO[],
5357
): Promise<ReviewedApplicantRecordDTO[]> {

0 commit comments

Comments
 (0)