@@ -9,13 +9,15 @@ import {
99import IReviewApplicantRecordService from "../interfaces/IReviewedApplicantRecordService" ;
1010
1111class 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