Added GET branch endpoint for insurer

This commit is contained in:
SepehrYahyaee
2026-02-01 17:27:01 +03:30
parent f3982e7d5d
commit 432d5f9a98
3 changed files with 176 additions and 0 deletions

View File

@@ -905,4 +905,8 @@ export class ExpertInsurerService {
},
};
}
async retrieveInsuranceBranches(insuranceId: string) {
return await this.branchDbService.findAll(insuranceId);
}
}