feat: finish create and inquire application api and handle response and errors

This commit is contained in:
Abdalhamid Alhamad
2025-06-03 14:51:36 +03:00
parent d4fe3b3fc3
commit 1ea1f42169
23 changed files with 1698 additions and 124 deletions

View File

@ -198,4 +198,8 @@ export class CustomerService {
customer.civilIdBack.url = civilIdBackUrl;
return customer;
}
async findAnyCustomer() {
return this.customerRepository.findOne({ isGuardian: true });
}
}