diff --git a/src/app/pages/customers/customers-get-all/customers-get-all.html b/src/app/pages/customers/customers-get-all/customers-get-all.html
index cbe0385..4c47919 100644
--- a/src/app/pages/customers/customers-get-all/customers-get-all.html
+++ b/src/app/pages/customers/customers-get-all/customers-get-all.html
@@ -2,14 +2,8 @@
@for (customer of customers(); track customer.id)
{
-
- Utilisateur n°{{ customer.id }}
- Nom/Prénom : {{ customer.name }} {{ customer.firstName }}
- Téléphone : {{ customer.phone }}
- Email : {{ customer.email }}
- Adresse : {{ customer.address }}
- Note : {{ customer.note }}
-
+
+
}
-
+
\ No newline at end of file
diff --git a/src/app/pages/customers/customers-get-all/customers-get-all.ts b/src/app/pages/customers/customers-get-all/customers-get-all.ts
index 69def45..7da7565 100644
--- a/src/app/pages/customers/customers-get-all/customers-get-all.ts
+++ b/src/app/pages/customers/customers-get-all/customers-get-all.ts
@@ -1,22 +1,28 @@
-import {Component, inject, signal} from '@angular/core';
-import {Router} from "@angular/router";
-import {firstValueFrom} from "rxjs";
+import {Component, inject, OnInit, signal} from '@angular/core';
+import { Router } from '@angular/router';
+import {CustomersService, GetCustomerDto} from "../../../services/api";
import {NzNotificationService} from "ng-zorro-antd/notification";
+import {firstValueFrom} from "rxjs";
+import {ReactiveFormsModule} from "@angular/forms";
+import {NzFormModule} from "ng-zorro-antd/form";
+import {NzSpaceComponent} from "ng-zorro-antd/space";
+import {GetAllCustomersCard} from "../get-all-customers-card/get-all-customers-card";
@Component({
selector: 'app-customers-get-all',
- imports: [],
+ imports: [ReactiveFormsModule, NzFormModule, GetAllCustomersCard, GetAllCustomersCard],
templateUrl: './customers-get-all.html',
styleUrl: './customers-get-all.css',
})
export class CustomersGetAll {
- private customerService = inject(CustomersService);
+ private customersService = inject(CustomersService);
private notificationService = inject(NzNotificationService)
router = inject(Router);
customers = signal