Index: src/app/customer/customer-dashboard/customer-dashboard.component.html
===================================================================
--- src/app/customer/customer-dashboard/customer-dashboard.component.html	(revision 9b7ced77dfd932f5eb946bae0e8720820d4d18d2)
+++ src/app/customer/customer-dashboard/customer-dashboard.component.html	(revision a2c4e1080d5d655ec652c3a044ca2d42fc995b4d)
@@ -2,45 +2,46 @@
 
 <div class="container mt-4">
-    <h1 class="mb-4">Here is your dashboard</h1>
+  <h1 class="mb-4">Here is your dashboard</h1>
 
-    <div class="row">
-        <div class="col-md-6">
-            <h2>Your Current Orders</h2>
-            <table class="table table-striped">
-                <thead>
-                    <tr>
-                        <th>Order Date</th>
-                        <th>Order Sum</th>
-                        <th>Order Status</th>
-                    </tr>
-                </thead>
-                <tbody>
-                    <tr *ngFor="let order of orders; trackBy: trackByOrder">
-                        <td>{{ order.ordDate | date: 'shortDate' }}</td>
-                        <td>{{ order.ordSum | currency }}</td>
-                        <td>{{ order.statusName }}</td>
-                    </tr>
-                </tbody>
-            </table>
-        </div>
+  <div class="row">
+    <div class="col-md-6">
+      <h2>Your Current Orders</h2>
+      <table class="table table-striped">
+        <thead>
+          <tr>
+            <th>Order Date</th>
+            <th>Order Sum</th>
+            <th>Order Comment</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr *ngFor="let order of orders; trackBy: trackByOrder">
+            <td>{{ order.ordDate | date: "shortDate" }}</td>
+            <td>{{ order.ordSum | currency }}</td>
+            <td>{{ order.ordComment }}</td>
+          </tr>
+        </tbody>
+      </table>
+    </div>
 
-        <div class="col-md-6">
-            <h2>Your Current Deliveries</h2>
-            <table class="table table-striped">
-              <thead>
-                <tr>
-                  <th>Delivery Date</th>
-                  <th>Driver Name</th>
-                  <th>Delivery Status</th>
-                </tr>
-              </thead>
-              <tbody>
-                <tr *ngFor="let del of deliveries; trackBy: trackByDelivery">
-                  <td>{{ del.delDate | date: 'shortDate' }}</td>
-                  <td>{{ del.driverName }}</td>
-                  <td>{{ del.delStatus }}</td>
-                </tr>
-              </tbody>
-            </table>
+    <div class="col-md-6">
+      <h2>Your Current Deliveries</h2>
+      <table class="table table-striped">
+        <thead>
+          <tr>
+            <th>Delivery Date</th>
+            <th>Driver Name</th>
+            <th>Delivery Status</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr *ngFor="let del of deliveries; trackBy: trackByDelivery">
+            <td>{{ del.delDate | date: "shortDate" }}</td>
+            <td>{{ del.driverName }}</td>
+            <td>{{ del.delStatus }}</td>
+          </tr>
+        </tbody>
+      </table>
     </div>
+  </div>
 </div>
Index: src/app/models/order.model.ts
===================================================================
--- src/app/models/order.model.ts	(revision 9b7ced77dfd932f5eb946bae0e8720820d4d18d2)
+++ src/app/models/order.model.ts	(revision a2c4e1080d5d655ec652c3a044ca2d42fc995b4d)
@@ -1,5 +1,11 @@
 export interface Order {
-    ordDate: string;
-    ordSum: number;
-    statusName: string;
+  id: number;
+  ordDate: string;
+  ordSum: number;
+  ordFulfillmentDate: string;
+  ordComment: string;
+  oStatusId: number;
+  customerId: number;
+  deliveryId: number;
+  pfId: number;
 }
