Ignore:
Timestamp:
07/29/20 19:46:21 (4 years ago)
Author:
Mile Jankuloski <mile.jankuloski@…>
Branches:
master
Children:
4e72684
Parents:
e42f61a
Message:

Prepared and improved components for data flows

Location:
Farmatiko/ClientApp/src/app/models
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Farmatiko/ClientApp/src/app/models/HealthcareWorkers.ts

    re42f61a rde18858  
    22
    33export class HealthcareWorkers {
    4   Name: string;
    5   Branch: Date;
    6   Facility: HealthFacilities;
    7   Title: string;
     4  name: string;
     5  branch: Date;
     6  facility: HealthFacilities;
     7  title: string;
    88}
  • Farmatiko/ClientApp/src/app/models/Medicine.ts

    re42f61a rde18858  
    11export class Medicine {
    2   Name: string;
    3   Strength: string;
    4   Form: string;
    5   WayOfIssuing: string;
    6   Manufacturer: string;
    7   Price: Float32Array;
    8   Packaging: string;
     2  name: string;
     3  strength: string;
     4  form: string;
     5  wayOfIssuing: string;
     6  manufacturer: string;
     7  price: number;
     8  packaging: string;
    99}
  • Farmatiko/ClientApp/src/app/models/Pandemic.ts

    re42f61a rde18858  
    11export class Pandemic {
    2   Name: string;
    3   TotalMK: number;
    4   ActiveMK: number;
    5   DeathsMK: number;
    6   NewMK: number;
    7   TotalGlobal: number;
    8   DeathsGlobal: number;
    9   ActiveGlobal: number;
     2  name: string;
     3  totalMK: number;
     4  activeMK: number;
     5  deathsMK: number;
     6  newMK: number;
     7  totalGlobal: number;
     8  deathsGlobal: number;
     9  activeGlobal: number;
    1010}
  • Farmatiko/ClientApp/src/app/models/Pharmacy.ts

    re42f61a rde18858  
    11export class Pharmacy {
    2   Name: string;
    3   Location: string;
    4   Address: string;
    5   WorkAllTime: boolean;
     2  name: string;
     3  location: string;
     4  address: string;
     5  workAllTime: boolean;
    66}
Note: See TracChangeset for help on using the changeset viewer.