codevdesign 0.0.48 → 0.0.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +117 -117
- package/composants/csqcAide.vue +2 -2
- package/composants/csqcAlerteErreur.vue +86 -86
- package/composants/csqcChaise/chaiseItem.vue +53 -53
- package/composants/csqcConfirmation.vue +74 -74
- package/composants/csqcDialogue.vue +3 -4
- package/composants/csqcEntete.vue +127 -127
- package/composants/csqcOptionSwitch.vue +124 -124
- package/composants/csqcRecherche.vue +5 -2
- package/composants/csqcSnackbar.vue +1 -2
- package/composants/csqcTable/csqcTable.vue +389 -389
- package/composants/csqcTable/csqcTableExportExcel.vue +58 -58
- package/composants/csqcTexteBilingue.vue +13 -13
- package/composants/csqcTiroir.vue +1 -2
- package/composants/gabarit/csqcMenu.vue +7 -5
- package/composants/gabarit/pivEntete.vue +10 -6
- package/composants/gabarit/pivPiedPage.vue +70 -70
- package/composants/validateurs.ts +183 -181
- package/index.ts +68 -68
- package/modeles/apiReponse.ts +12 -12
- package/modeles/composants/datatableColonne.ts +14 -14
- package/modeles/composants/snackbar.ts +18 -18
- package/modeles/data.ts +24 -24
- package/modeles/droitIntervention.ts +14 -14
- package/modeles/groupeCE.ts +23 -23
- package/modeles/groupeCEIntervalle.ts +24 -24
- package/modeles/intervention.ts +35 -35
- package/modeles/notificationGabaritDefaut.ts +10 -10
- package/modeles/response.ts +12 -12
- package/modeles/role.ts +31 -31
- package/modeles/roleMin.ts +12 -12
- package/modeles/unite.ts +41 -41
- package/modeles/utilisateur.ts +32 -32
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
class droitIntervention {
|
|
2
|
-
uniteId: number
|
|
3
|
-
chaiseId: number
|
|
4
|
-
niveauChaise: number
|
|
5
|
-
typeIntervenant: number
|
|
6
|
-
constructor(uniteId: number = 0, chaiseId: number = 0, niveauChaise: number = 0, typeIntervenant: number = 0) {
|
|
7
|
-
this.uniteId = uniteId
|
|
8
|
-
this.chaiseId = chaiseId
|
|
9
|
-
this.niveauChaise = niveauChaise
|
|
10
|
-
this.typeIntervenant = typeIntervenant
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export default droitIntervention
|
|
1
|
+
class droitIntervention {
|
|
2
|
+
uniteId: number
|
|
3
|
+
chaiseId: number
|
|
4
|
+
niveauChaise: number
|
|
5
|
+
typeIntervenant: number
|
|
6
|
+
constructor(uniteId: number = 0, chaiseId: number = 0, niveauChaise: number = 0, typeIntervenant: number = 0) {
|
|
7
|
+
this.uniteId = uniteId
|
|
8
|
+
this.chaiseId = chaiseId
|
|
9
|
+
this.niveauChaise = niveauChaise
|
|
10
|
+
this.typeIntervenant = typeIntervenant
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export default droitIntervention
|
package/modeles/groupeCE.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import GroupeCEIntervalle from './groupeCEIntervalle'
|
|
2
|
-
class GroupeCE {
|
|
3
|
-
id: number
|
|
4
|
-
commissionScolaireId: number
|
|
5
|
-
nom: string
|
|
6
|
-
groupeCEIntervalles: GroupeCEIntervalle[]
|
|
7
|
-
parentId?: number
|
|
8
|
-
|
|
9
|
-
constructor(
|
|
10
|
-
id: number = 0,
|
|
11
|
-
commissionScolaireId: number = 0,
|
|
12
|
-
nom: string = '',
|
|
13
|
-
groupeCEIntervalles: GroupeCEIntervalle[] = [],
|
|
14
|
-
parentId: number = 0,
|
|
15
|
-
) {
|
|
16
|
-
this.id = id
|
|
17
|
-
this.commissionScolaireId = commissionScolaireId
|
|
18
|
-
this.nom = nom
|
|
19
|
-
this.groupeCEIntervalles = groupeCEIntervalles
|
|
20
|
-
this.parentId = parentId
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
export default GroupeCE
|
|
1
|
+
import GroupeCEIntervalle from './groupeCEIntervalle'
|
|
2
|
+
class GroupeCE {
|
|
3
|
+
id: number
|
|
4
|
+
commissionScolaireId: number
|
|
5
|
+
nom: string
|
|
6
|
+
groupeCEIntervalles: GroupeCEIntervalle[]
|
|
7
|
+
parentId?: number
|
|
8
|
+
|
|
9
|
+
constructor(
|
|
10
|
+
id: number = 0,
|
|
11
|
+
commissionScolaireId: number = 0,
|
|
12
|
+
nom: string = '',
|
|
13
|
+
groupeCEIntervalles: GroupeCEIntervalle[] = [],
|
|
14
|
+
parentId: number = 0,
|
|
15
|
+
) {
|
|
16
|
+
this.id = id
|
|
17
|
+
this.commissionScolaireId = commissionScolaireId
|
|
18
|
+
this.nom = nom
|
|
19
|
+
this.groupeCEIntervalles = groupeCEIntervalles
|
|
20
|
+
this.parentId = parentId
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
export default GroupeCE
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
class GroupeCEIntervalle {
|
|
2
|
-
id: number
|
|
3
|
-
corpsEmploiMin: string
|
|
4
|
-
corpsEmploiMax: string
|
|
5
|
-
groupeCEId: number
|
|
6
|
-
min: number
|
|
7
|
-
max: number
|
|
8
|
-
constructor(
|
|
9
|
-
id: number = 0,
|
|
10
|
-
corpsEmploiMin: string = '',
|
|
11
|
-
corpsEmploiMax: string = '',
|
|
12
|
-
groupeCEId: number = 0,
|
|
13
|
-
min: number,
|
|
14
|
-
max: number,
|
|
15
|
-
) {
|
|
16
|
-
this.id = id
|
|
17
|
-
this.corpsEmploiMin = corpsEmploiMin
|
|
18
|
-
this.corpsEmploiMax = corpsEmploiMax
|
|
19
|
-
this.groupeCEId = groupeCEId
|
|
20
|
-
this.min = min
|
|
21
|
-
this.max = max
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
export default GroupeCEIntervalle
|
|
1
|
+
class GroupeCEIntervalle {
|
|
2
|
+
id: number
|
|
3
|
+
corpsEmploiMin: string
|
|
4
|
+
corpsEmploiMax: string
|
|
5
|
+
groupeCEId: number
|
|
6
|
+
min: number
|
|
7
|
+
max: number
|
|
8
|
+
constructor(
|
|
9
|
+
id: number = 0,
|
|
10
|
+
corpsEmploiMin: string = '',
|
|
11
|
+
corpsEmploiMax: string = '',
|
|
12
|
+
groupeCEId: number = 0,
|
|
13
|
+
min: number,
|
|
14
|
+
max: number,
|
|
15
|
+
) {
|
|
16
|
+
this.id = id
|
|
17
|
+
this.corpsEmploiMin = corpsEmploiMin
|
|
18
|
+
this.corpsEmploiMax = corpsEmploiMax
|
|
19
|
+
this.groupeCEId = groupeCEId
|
|
20
|
+
this.min = min
|
|
21
|
+
this.max = max
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
export default GroupeCEIntervalle
|
package/modeles/intervention.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
class Intervention {
|
|
2
|
-
id: number
|
|
3
|
-
demandeId: number
|
|
4
|
-
uniteId: number
|
|
5
|
-
chaiseId?: number
|
|
6
|
-
niveauChaise?: number
|
|
7
|
-
typeIntervenant: number
|
|
8
|
-
utilisateurIdAyantIntervenu?: number
|
|
9
|
-
dateIntervention?: Date
|
|
10
|
-
etat: number
|
|
11
|
-
|
|
12
|
-
constructor(
|
|
13
|
-
id: number = 0,
|
|
14
|
-
demandeId: number = 0,
|
|
15
|
-
uniteId: number = 0,
|
|
16
|
-
typeIntervenant: number = 0,
|
|
17
|
-
etat: number = 0,
|
|
18
|
-
chaiseId?: number,
|
|
19
|
-
niveauChaise?: number,
|
|
20
|
-
utilisateurIdAyantIntervenu?: number,
|
|
21
|
-
dateIntervention?: Date,
|
|
22
|
-
) {
|
|
23
|
-
this.id = id
|
|
24
|
-
this.demandeId = demandeId
|
|
25
|
-
this.uniteId = uniteId
|
|
26
|
-
this.typeIntervenant = typeIntervenant
|
|
27
|
-
this.etat = etat
|
|
28
|
-
this.chaiseId = chaiseId
|
|
29
|
-
this.niveauChaise = niveauChaise
|
|
30
|
-
this.utilisateurIdAyantIntervenu = utilisateurIdAyantIntervenu
|
|
31
|
-
this.dateIntervention = dateIntervention
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export default Intervention
|
|
1
|
+
class Intervention {
|
|
2
|
+
id: number
|
|
3
|
+
demandeId: number
|
|
4
|
+
uniteId: number
|
|
5
|
+
chaiseId?: number
|
|
6
|
+
niveauChaise?: number
|
|
7
|
+
typeIntervenant: number
|
|
8
|
+
utilisateurIdAyantIntervenu?: number
|
|
9
|
+
dateIntervention?: Date
|
|
10
|
+
etat: number
|
|
11
|
+
|
|
12
|
+
constructor(
|
|
13
|
+
id: number = 0,
|
|
14
|
+
demandeId: number = 0,
|
|
15
|
+
uniteId: number = 0,
|
|
16
|
+
typeIntervenant: number = 0,
|
|
17
|
+
etat: number = 0,
|
|
18
|
+
chaiseId?: number,
|
|
19
|
+
niveauChaise?: number,
|
|
20
|
+
utilisateurIdAyantIntervenu?: number,
|
|
21
|
+
dateIntervention?: Date,
|
|
22
|
+
) {
|
|
23
|
+
this.id = id
|
|
24
|
+
this.demandeId = demandeId
|
|
25
|
+
this.uniteId = uniteId
|
|
26
|
+
this.typeIntervenant = typeIntervenant
|
|
27
|
+
this.etat = etat
|
|
28
|
+
this.chaiseId = chaiseId
|
|
29
|
+
this.niveauChaise = niveauChaise
|
|
30
|
+
this.utilisateurIdAyantIntervenu = utilisateurIdAyantIntervenu
|
|
31
|
+
this.dateIntervention = dateIntervention
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default Intervention
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
class NotificationGabaritDefaut {
|
|
2
|
-
message: string
|
|
3
|
-
sujet: string
|
|
4
|
-
constructor(message: string = '', sujet: string = '') {
|
|
5
|
-
this.message = message
|
|
6
|
-
this.sujet = sujet
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export default NotificationGabaritDefaut
|
|
1
|
+
class NotificationGabaritDefaut {
|
|
2
|
+
message: string
|
|
3
|
+
sujet: string
|
|
4
|
+
constructor(message: string = '', sujet: string = '') {
|
|
5
|
+
this.message = message
|
|
6
|
+
this.sujet = sujet
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export default NotificationGabaritDefaut
|
package/modeles/response.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import data from './data'
|
|
2
|
-
class response {
|
|
3
|
-
public data: data | null
|
|
4
|
-
public status: number
|
|
5
|
-
|
|
6
|
-
constructor(data: data | null = null, status: number = 0) {
|
|
7
|
-
this.data = data
|
|
8
|
-
this.status = status
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export default response
|
|
1
|
+
import data from './data'
|
|
2
|
+
class response {
|
|
3
|
+
public data: data | null
|
|
4
|
+
public status: number
|
|
5
|
+
|
|
6
|
+
constructor(data: data | null = null, status: number = 0) {
|
|
7
|
+
this.data = data
|
|
8
|
+
this.status = status
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default response
|
package/modeles/role.ts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import RoleMin from './roleMin'
|
|
2
|
-
|
|
3
|
-
class Role extends RoleMin {
|
|
4
|
-
ordreAffichage: number
|
|
5
|
-
descriptionEn: string
|
|
6
|
-
descriptionFr: string
|
|
7
|
-
nomFr: string
|
|
8
|
-
nomEn: string
|
|
9
|
-
utilisateursId: string[]
|
|
10
|
-
constructor(
|
|
11
|
-
descriptionEn: string = '',
|
|
12
|
-
ordreAffichage: number = 0,
|
|
13
|
-
descriptionFr: string = '',
|
|
14
|
-
nomFr: string = '',
|
|
15
|
-
nomEn: string = '',
|
|
16
|
-
utilisateursId: string[] = [],
|
|
17
|
-
identifiant: string = '',
|
|
18
|
-
id: number = 0,
|
|
19
|
-
formulaireId: number = 0,
|
|
20
|
-
) {
|
|
21
|
-
super(identifiant, id, formulaireId) // Appel au constructeur de la classe parente
|
|
22
|
-
this.descriptionEn = descriptionEn
|
|
23
|
-
this.ordreAffichage = ordreAffichage
|
|
24
|
-
this.descriptionFr = descriptionFr
|
|
25
|
-
this.nomFr = nomFr
|
|
26
|
-
this.nomEn = nomEn
|
|
27
|
-
this.utilisateursId = utilisateursId
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export default Role
|
|
1
|
+
import RoleMin from './roleMin'
|
|
2
|
+
|
|
3
|
+
class Role extends RoleMin {
|
|
4
|
+
ordreAffichage: number
|
|
5
|
+
descriptionEn: string
|
|
6
|
+
descriptionFr: string
|
|
7
|
+
nomFr: string
|
|
8
|
+
nomEn: string
|
|
9
|
+
utilisateursId: string[]
|
|
10
|
+
constructor(
|
|
11
|
+
descriptionEn: string = '',
|
|
12
|
+
ordreAffichage: number = 0,
|
|
13
|
+
descriptionFr: string = '',
|
|
14
|
+
nomFr: string = '',
|
|
15
|
+
nomEn: string = '',
|
|
16
|
+
utilisateursId: string[] = [],
|
|
17
|
+
identifiant: string = '',
|
|
18
|
+
id: number = 0,
|
|
19
|
+
formulaireId: number = 0,
|
|
20
|
+
) {
|
|
21
|
+
super(identifiant, id, formulaireId) // Appel au constructeur de la classe parente
|
|
22
|
+
this.descriptionEn = descriptionEn
|
|
23
|
+
this.ordreAffichage = ordreAffichage
|
|
24
|
+
this.descriptionFr = descriptionFr
|
|
25
|
+
this.nomFr = nomFr
|
|
26
|
+
this.nomEn = nomEn
|
|
27
|
+
this.utilisateursId = utilisateursId
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export default Role
|
package/modeles/roleMin.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
class RoleMin {
|
|
2
|
-
identifiant: string
|
|
3
|
-
formulaireId?: number
|
|
4
|
-
id: number
|
|
5
|
-
constructor(identifiant: string = '', id: number = 0, formulaireId: number = 0) {
|
|
6
|
-
this.id = id
|
|
7
|
-
this.identifiant = identifiant
|
|
8
|
-
this.formulaireId = formulaireId
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export default RoleMin
|
|
1
|
+
class RoleMin {
|
|
2
|
+
identifiant: string
|
|
3
|
+
formulaireId?: number
|
|
4
|
+
id: number
|
|
5
|
+
constructor(identifiant: string = '', id: number = 0, formulaireId: number = 0) {
|
|
6
|
+
this.id = id
|
|
7
|
+
this.identifiant = identifiant
|
|
8
|
+
this.formulaireId = formulaireId
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default RoleMin
|
package/modeles/unite.ts
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
class Unite {
|
|
2
|
-
id: number
|
|
3
|
-
commissionScolaireId: number
|
|
4
|
-
nom: string
|
|
5
|
-
estActif: boolean
|
|
6
|
-
numero: string
|
|
7
|
-
numeroEcoleJeune: string
|
|
8
|
-
numeroCentreAdulte: string
|
|
9
|
-
numeroEcoleJeuneStr: string
|
|
10
|
-
numeroCentreAdulteStr: string
|
|
11
|
-
estJeune: boolean
|
|
12
|
-
estAdulte: boolean
|
|
13
|
-
|
|
14
|
-
constructor(
|
|
15
|
-
id: number = 0,
|
|
16
|
-
commissionScolaireId: number = 0,
|
|
17
|
-
nom: string = '',
|
|
18
|
-
estActif: boolean = false,
|
|
19
|
-
numero: string = '',
|
|
20
|
-
numeroEcoleJeune: string = '',
|
|
21
|
-
numeroCentreAdulte: string = '',
|
|
22
|
-
numeroEcoleJeuneStr: string = '',
|
|
23
|
-
numeroCentreAdulteStr: string = '',
|
|
24
|
-
estJeune: boolean = false,
|
|
25
|
-
estAdulte: boolean = false,
|
|
26
|
-
) {
|
|
27
|
-
this.id = id
|
|
28
|
-
this.commissionScolaireId = commissionScolaireId
|
|
29
|
-
this.nom = nom
|
|
30
|
-
this.estActif = estActif
|
|
31
|
-
this.numero = numero
|
|
32
|
-
this.numeroEcoleJeune = numeroEcoleJeune
|
|
33
|
-
this.numeroCentreAdulte = numeroCentreAdulte
|
|
34
|
-
this.numeroEcoleJeuneStr = numeroEcoleJeuneStr
|
|
35
|
-
this.numeroCentreAdulteStr = numeroCentreAdulteStr
|
|
36
|
-
this.estJeune = estJeune
|
|
37
|
-
this.estAdulte = estAdulte
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export default Unite
|
|
1
|
+
class Unite {
|
|
2
|
+
id: number
|
|
3
|
+
commissionScolaireId: number
|
|
4
|
+
nom: string
|
|
5
|
+
estActif: boolean
|
|
6
|
+
numero: string
|
|
7
|
+
numeroEcoleJeune: string
|
|
8
|
+
numeroCentreAdulte: string
|
|
9
|
+
numeroEcoleJeuneStr: string
|
|
10
|
+
numeroCentreAdulteStr: string
|
|
11
|
+
estJeune: boolean
|
|
12
|
+
estAdulte: boolean
|
|
13
|
+
|
|
14
|
+
constructor(
|
|
15
|
+
id: number = 0,
|
|
16
|
+
commissionScolaireId: number = 0,
|
|
17
|
+
nom: string = '',
|
|
18
|
+
estActif: boolean = false,
|
|
19
|
+
numero: string = '',
|
|
20
|
+
numeroEcoleJeune: string = '',
|
|
21
|
+
numeroCentreAdulte: string = '',
|
|
22
|
+
numeroEcoleJeuneStr: string = '',
|
|
23
|
+
numeroCentreAdulteStr: string = '',
|
|
24
|
+
estJeune: boolean = false,
|
|
25
|
+
estAdulte: boolean = false,
|
|
26
|
+
) {
|
|
27
|
+
this.id = id
|
|
28
|
+
this.commissionScolaireId = commissionScolaireId
|
|
29
|
+
this.nom = nom
|
|
30
|
+
this.estActif = estActif
|
|
31
|
+
this.numero = numero
|
|
32
|
+
this.numeroEcoleJeune = numeroEcoleJeune
|
|
33
|
+
this.numeroCentreAdulte = numeroCentreAdulte
|
|
34
|
+
this.numeroEcoleJeuneStr = numeroEcoleJeuneStr
|
|
35
|
+
this.numeroCentreAdulteStr = numeroCentreAdulteStr
|
|
36
|
+
this.estJeune = estJeune
|
|
37
|
+
this.estAdulte = estAdulte
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export default Unite
|
package/modeles/utilisateur.ts
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
class Utilisateur {
|
|
2
|
-
commissionScolaireId: number
|
|
3
|
-
courriel: string
|
|
4
|
-
id: number
|
|
5
|
-
identifiant: string
|
|
6
|
-
langue: string
|
|
7
|
-
matricule: string
|
|
8
|
-
nom: string
|
|
9
|
-
prenom: string
|
|
10
|
-
|
|
11
|
-
constructor(
|
|
12
|
-
commissionScolaireId: number = 0,
|
|
13
|
-
courriel: string = '',
|
|
14
|
-
id: number = 0,
|
|
15
|
-
identifiant: string = '',
|
|
16
|
-
langue: string = '',
|
|
17
|
-
matricule: string = '',
|
|
18
|
-
nom: string = '',
|
|
19
|
-
prenom: string = '',
|
|
20
|
-
) {
|
|
21
|
-
this.commissionScolaireId = commissionScolaireId
|
|
22
|
-
this.courriel = courriel
|
|
23
|
-
this.id = id
|
|
24
|
-
this.identifiant = identifiant
|
|
25
|
-
this.langue = langue
|
|
26
|
-
this.matricule = matricule
|
|
27
|
-
this.nom = nom
|
|
28
|
-
this.prenom = prenom
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export default Utilisateur
|
|
1
|
+
class Utilisateur {
|
|
2
|
+
commissionScolaireId: number
|
|
3
|
+
courriel: string
|
|
4
|
+
id: number
|
|
5
|
+
identifiant: string
|
|
6
|
+
langue: string
|
|
7
|
+
matricule: string
|
|
8
|
+
nom: string
|
|
9
|
+
prenom: string
|
|
10
|
+
|
|
11
|
+
constructor(
|
|
12
|
+
commissionScolaireId: number = 0,
|
|
13
|
+
courriel: string = '',
|
|
14
|
+
id: number = 0,
|
|
15
|
+
identifiant: string = '',
|
|
16
|
+
langue: string = '',
|
|
17
|
+
matricule: string = '',
|
|
18
|
+
nom: string = '',
|
|
19
|
+
prenom: string = '',
|
|
20
|
+
) {
|
|
21
|
+
this.commissionScolaireId = commissionScolaireId
|
|
22
|
+
this.courriel = courriel
|
|
23
|
+
this.id = id
|
|
24
|
+
this.identifiant = identifiant
|
|
25
|
+
this.langue = langue
|
|
26
|
+
this.matricule = matricule
|
|
27
|
+
this.nom = nom
|
|
28
|
+
this.prenom = prenom
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export default Utilisateur
|