ajout du niveau d'experience
This commit is contained in:
@@ -11,5 +11,6 @@
|
||||
|
||||
export interface CreateExperienceLevelDto {
|
||||
label?: string | null;
|
||||
staffId?: number | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -12,5 +12,6 @@
|
||||
export interface CreateHistoryOfApprovalDto {
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
staffId?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -15,6 +15,6 @@ export interface CreateStaffDto {
|
||||
profession?: string | null;
|
||||
email?: string | null;
|
||||
f4T2NumberApproval?: string | null;
|
||||
f4T2ExpirationDate?: string;
|
||||
f4T2ExpirationDate?: Date | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -12,5 +12,6 @@
|
||||
export interface GetExperienceLevelDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
staffId?: number | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -13,5 +13,6 @@ export interface GetHistoryOfApprovalDto {
|
||||
id?: number;
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
staffId?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -13,5 +13,6 @@ export interface GetProviderDto {
|
||||
id?: number;
|
||||
price?: number;
|
||||
providerTypeId?: number;
|
||||
providerType?: string | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,5 +17,6 @@ export interface GetStaffDto {
|
||||
email?: string | null;
|
||||
f4T2NumberApproval?: string | null;
|
||||
f4T2ExpirationDate?: Date | null;
|
||||
experienceLevel?: string | null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user