Ignore:
Timestamp:
07/22/20 15:23:50 (4 years ago)
Author:
DimitarSlezenkovski <dslezenkovski@…>
Branches:
master
Children:
37c8d1d
Parents:
96108d8
Message:

Add migration, BaseEntity class and FarmatikoServices

Location:
Farmatiko/ClientApp/src/app
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Farmatiko/ClientApp/src/app/korona/korona.component.css

    r96108d8 ra8ccc2c  
    11.counter {
    2     background-color:#f5f5f5;
    3     padding: 20px 0;
    4     border-radius: 5px;
     2  background-color: #f5f5f5;
     3  padding: 20px 0;
     4  border-radius: 5px;
    55}
    66
    77.count-title {
    8     font-size: 40px;
    9     font-weight: normal;
    10     margin-top: 10px;
    11     margin-bottom: 0;
    12     text-align: center;
     8  font-size: 40px;
     9  font-weight: normal;
     10  margin-top: 10px;
     11  margin-bottom: 0;
     12  text-align: center;
    1313}
    1414
    1515.count-text {
    16     font-size: 13px;
    17     font-weight: normal;
    18     margin-top: 10px;
    19     margin-bottom: 0;
    20     text-align: center;
     16  font-size: 13px;
     17  font-weight: normal;
     18  margin-top: 10px;
     19  margin-bottom: 0;
     20  text-align: center;
    2121}
    2222
    2323.fa-2x {
    24     margin: 0 auto;
    25     float: none;
    26     display: table;
    27     color: #4ad1e5;
     24  margin: 0 auto;
     25  float: none;
     26  display: table;
     27  color: #4ad1e5;
    2828}
  • Farmatiko/ClientApp/src/app/korona/korona.component.spec.ts

    r96108d8 ra8ccc2c  
    99  beforeEach(async(() => {
    1010    TestBed.configureTestingModule({
    11       declarations: [ KoronaComponent ]
     11      declarations: [KoronaComponent]
    1212    })
    13     .compileComponents();
     13      .compileComponents();
    1414  }));
    1515
  • Farmatiko/ClientApp/src/app/models/Medicine.ts

    r96108d8 ra8ccc2c  
    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: Float32Array;
     8  Packaging: string;
    99}
Note: See TracChangeset for help on using the changeset viewer.