From e60c1f55bbe47fc017c9cabdb3658b3b2f72d2dd Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Mon, 6 Feb 2017 22:05:50 +0000 Subject: [PATCH] add TimeLog initialiser. --- .../WindowsDataCenter/Interfaces/TimeLogList.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/TimeLogList.cs b/DataCenter_Windows/WindowsDataCenter/Interfaces/TimeLogList.cs index cb7e9f5..6eaee3f 100644 --- a/DataCenter_Windows/WindowsDataCenter/Interfaces/TimeLogList.cs +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/TimeLogList.cs @@ -4,6 +4,10 @@ namespace Interfaces { public class TimeLogList { + public TimeLogList() + { + TimeLogs = new List(); + } public int CalendarWeek { get; set; } public List TimeLogs { get; set; } }