public ObservableCollection <WindowItem> GetAllWindowItems()
        {
            long start = (long)(StartDate.Subtract(new DateTime(1970, 1, 1))).TotalSeconds;
            List <WindowItem> winItems = _DBGateway.GetAllWindowItemsInDateRange(start, null);

            return(new ObservableCollection <WindowItem>(winItems));
        }