Last change
on this file since 993189e was 993189e, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago |
Auth guards and services, refactored components
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[ee137aa] | 1 | export interface IHealthcareWorkers {
|
---|
| 2 | id?: string;
|
---|
| 3 | name: string;
|
---|
| 4 | branch: Date;
|
---|
| 5 | facility: IHealthFacilities;
|
---|
| 6 | title: string;
|
---|
| 7 | }
|
---|
| 8 |
|
---|
| 9 | export interface IHealthFacilities {
|
---|
| 10 | id?: string;
|
---|
| 11 | address: string;
|
---|
| 12 | email?: string;
|
---|
| 13 | municipality: string;
|
---|
| 14 | name: string;
|
---|
| 15 | phone?: string;
|
---|
| 16 | type?: string;
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | export interface IMedicine {
|
---|
| 20 | id?: string;
|
---|
| 21 | name: string;
|
---|
| 22 | strength: string;
|
---|
| 23 | form: string;
|
---|
| 24 | wayOfIssuing: string;
|
---|
| 25 | manufacturer: string;
|
---|
| 26 | price: number;
|
---|
| 27 | packaging: string;
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | export interface IPandemic {
|
---|
[993189e] | 31 | id?: string;
|
---|
[ee137aa] | 32 | name?: string;
|
---|
| 33 | totalMK?: number;
|
---|
| 34 | activeMK?: number;
|
---|
| 35 | deathsMK?: number;
|
---|
| 36 | newMK?: number;
|
---|
| 37 | totalGlobal?: number;
|
---|
| 38 | deathsGlobal?: number;
|
---|
| 39 | activeGlobal?: number;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | export interface IPharmacy {
|
---|
| 43 | id?: string;
|
---|
| 44 | name: string;
|
---|
| 45 | location: string;
|
---|
| 46 | address: string;
|
---|
| 47 | workAllTime?: boolean;
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | export interface IPharmacyHead {
|
---|
| 51 | id?: string;
|
---|
| 52 | PharmacyMedicines?: IMedicine[];
|
---|
| 53 | Pharmacy?: IPharmacy[];
|
---|
| 54 | Email: string;
|
---|
| 55 | Passwd: string;
|
---|
| 56 | Name: string;
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | export interface IPharmacyHeadRequest {
|
---|
| 60 | id?: string;
|
---|
| 61 | PharmacyHead?: IPharmacyHead;
|
---|
| 62 | Pharmacy?: IPharmacy;
|
---|
| 63 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.