Staff terminé

This commit is contained in:
2026-06-08 14:31:52 +02:00
parent 9885e4ee85
commit a4ae624777
9 changed files with 166 additions and 51 deletions
+4 -4
View File
@@ -1,15 +1,15 @@
import {Component, inject, signal} from '@angular/core';
import {StaffCardForm} from "./staff-card-form/staff-card-form";
import {StaffGetAll} from "./staff-get-all/staff-get-all";
import {NzRowDirective} from "ng-zorro-antd/grid";
import {GetProviderDto, GetStaffDto, ServiceprovidersService, StaffsService} from "../../services/api";
import {GetStaffDto, StaffsService} from "../../services/api";
import {NzNotificationService} from "ng-zorro-antd/notification";
import {Router} from "@angular/router";
import {firstValueFrom} from "rxjs";
import {CreateStaffModal} from "./create-staff-modal/create-staff-modal";
import {StaffCard} from "./staff-card/staff-card";
@Component({
selector: 'app-staff',
imports: [StaffCardForm, StaffGetAll, NzRowDirective,],
imports: [NzRowDirective, CreateStaffModal, StaffCard,],
templateUrl: './staff.html',
styleUrl: './staff.css',
})