1
0
forked from Yara724/api

lookup of person role added + inquiry by unique identifier + put driver id in payload

This commit is contained in:
Soheil Hajizadeh
2026-07-07 17:29:48 +03:30
parent 1c6678d8e4
commit 1e6c36cbd4
5 changed files with 141 additions and 1 deletions

View File

@@ -119,6 +119,10 @@ export class LookupsService {
return await this.getClientRemoteLookup("vehicle-kinds");
}
async getPersonRole(): Promise<any> {
return await this.getClientRemoteLookup("person-role");
}
async inquiryByVin(vin: string): Promise<unknown> {
const clientKey = this.activeClientKey();
return this.fanavaranLookupService.inquiryByVin(clientKey, vin);