From 49235288d7130a38992c7f28a5da1454f040e813 Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Fri, 24 Feb 2017 22:17:33 +0000 Subject: [PATCH] add implementation of the UserInformation property to populate it with the deftails for the given User #46 --- .../WindowsDataCenter/SQLiteRepository/SQLiteRepository.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/SQLiteRepository.cs b/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/SQLiteRepository.cs index 6745187..c7b80b2 100644 --- a/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/SQLiteRepository.cs +++ b/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/SQLiteRepository.cs @@ -205,6 +205,7 @@ namespace SQLiteRepository _logger.Error(ex, "Error in GetUserContracterHours with Id: {0} and selected date: {1}, Exception: {2}", userId, selectedDate, ex); } + ret.UserInformation = GetUser(userId); return ret; }