Line | |
---|
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 {
|
---|
31 | id?: string;
|
---|
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 | originalUserName?: string;
|
---|
58 | Role?: string;
|
---|
59 | }
|
---|
60 |
|
---|
61 | export interface IPharmacyHeadRequest {
|
---|
62 | id?: string;
|
---|
63 | PharmacyHead?: IPharmacyHead;
|
---|
64 | Pharmacy?: IPharmacy;
|
---|
65 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.