From db4f43360a320d48df86c805b9ba4d03614dacdc Mon Sep 17 00:00:00 2001
From: Andrew Reynolds <areynold@illinois.edu>
Date: Fri, 11 May 2018 11:22:51 -0500
Subject: [PATCH] use decimal for dish prices

---
 BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs b/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs
index 93f4d9b..5cbb648 100644
--- a/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs
+++ b/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs
@@ -35,12 +35,12 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Cafe
         /// <summary>
         /// The standard price of the dish.
         /// </summary>
-        public double StandardPrice { get; set; }
+        public decimal StandardPrice { get; set; }
 
         /// <summary>
         /// The price of a half-order of the dish, when available.
         /// </summary>
-        public double? HalfPrice { get; set; }
+        public decimal? HalfPrice { get; set; }
 
         /// <summary>
         /// Indicates whether the item is available every day ( <c>DishDto.Specialty == false</c>) or
-- 
GitLab