-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andy Andrianjatovo
committed
Aug 3, 2022
1 parent
a32577a
commit 64ed95b
Showing
42 changed files
with
6,398 additions
and
20,280 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Personne } from './personne'; | ||
|
||
export interface CarteVaccination { | ||
_id:String; | ||
id_carte: String; | ||
personne_id: String; | ||
} | ||
|
||
export interface CarteVaccinationToInsert { | ||
personne_id: String; | ||
} | ||
|
||
export interface CarteVaccinationToDisplay { | ||
id_carte: String; | ||
personne: Personne; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export interface Historique { | ||
_id: String; | ||
lieu_id: String; | ||
personne_id: String; | ||
date_passage: Date; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
import { Centre } from './centre'; | ||
import { Personne } from './personne'; | ||
import { Centre, CentreToInsert } from './centre'; | ||
import { Personne, PersonneToInsert } from './personne'; | ||
|
||
export interface Test { | ||
id_test: number; | ||
_id: String; | ||
id_test: String; | ||
date_test: Date; | ||
centre_id: number; | ||
personne_id: number; | ||
centre_id: String; | ||
personne_id: String; | ||
etat_test: number; | ||
} | ||
|
||
export interface TestToInsert { | ||
export interface TestToDisplay { | ||
id_test: String; | ||
date_test: Date; | ||
centre_id: number; | ||
personne_id: number; | ||
etat_test: number; | ||
centre: Centre; | ||
personne: Personne; | ||
} | ||
|
||
export interface TestToDisplay { | ||
id_test: number; | ||
export interface TestToInsert { | ||
date_test: Date; | ||
centre_id: String; | ||
personne_id: String; | ||
etat_test: number; | ||
centre: Centre; | ||
personne: Personne; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { CarteVaccination } from './carte-vaccination'; | ||
import { Centre } from './centre'; | ||
|
||
export interface Vaccin { | ||
_id: String; | ||
id_vaccin: String; | ||
nom_vaccin: string; | ||
centre_id: String; | ||
date_vaccin: Date; | ||
carte_id: String; | ||
} | ||
|
||
export interface VaccinToDisplay { | ||
id_vaccin: String; | ||
nom_vaccin: string; | ||
centre: Centre; | ||
date_vaccin: Date; | ||
carte: CarteVaccination; | ||
} | ||
|
||
export interface VaccinToInsert { | ||
nom_vaccin: string; | ||
centre_id: String; | ||
date_vaccin: Date; | ||
carte_id: String; | ||
} |
Oops, something went wrong.