Index: Farmatiko/ClientApp/src/app/counter/counter.component.css
===================================================================
--- Farmatiko/ClientApp/src/app/counter/counter.component.css	(revision fbaea2296889dd031f04175c758df1983d6cca99)
+++ Farmatiko/ClientApp/src/app/counter/counter.component.css	(revision 96108d8e3d49648b847951dc630301b0ad7b08d8)
@@ -1,13 +1,13 @@
 .wrapper {
-    display: flex;
-    justify-content: space-around;
-    padding-top: 50px;
+  display: flex;
+  justify-content: space-around;
+  padding-top: 50px;
 }
 
 nav {
-    float: right;
+  float: right;
 }
 
 table {
-    margin-top: 25px;
+  margin-top: 25px;
 }
Index: Farmatiko/ClientApp/src/app/counter/counter.component.html
===================================================================
--- Farmatiko/ClientApp/src/app/counter/counter.component.html	(revision fbaea2296889dd031f04175c758df1983d6cca99)
+++ Farmatiko/ClientApp/src/app/counter/counter.component.html	(revision 96108d8e3d49648b847951dc630301b0ad7b08d8)
@@ -1,3 +1,3 @@
-<h1>Counter</h1>
+<!-- <h1>Counter</h1>
 
 <p>This is a simple example of an Angular component.</p>
@@ -5,5 +5,5 @@
 <p aria-live="polite">Current count: <strong>{{ currentCount }}</strong></p>
 
-<button class="btn btn-primary" (click)="incrementCounter()">Increment</button>
+<button class="btn btn-primary" (click)="incrementCounter()">Increment</button> -->
 
 
Index: Farmatiko/ClientApp/src/app/models/Pandemic.ts
===================================================================
--- Farmatiko/ClientApp/src/app/models/Pandemic.ts	(revision fbaea2296889dd031f04175c758df1983d6cca99)
+++ Farmatiko/ClientApp/src/app/models/Pandemic.ts	(revision 96108d8e3d49648b847951dc630301b0ad7b08d8)
@@ -1,10 +1,10 @@
 export class Pandemic {
   Name: string;
-  TotalMK: BigInt;
-  ActiveMK: BigInt;
-  DeathsMK: BigInt;
-  NewMK: BigInt;
-  TotalGlobal: BigInt;
-  DeathsGlobal: BigInt;
-  ActiveGlobal: BigInt;
+  TotalMK: BigInteger;
+  ActiveMK: BigInteger;
+  DeathsMK: BigInteger;
+  NewMK: BigInteger;
+  TotalGlobal: BigInteger;
+  DeathsGlobal: BigInteger;
+  ActiveGlobal: BigInteger;
 }
