SecureDelete.Schedule.HistoryManager.GetItems C# (CSharp) Method

GetItems() public method

public GetItems ( System.Guid guid ) : IList
guid System.Guid
return IList
        public IList<HistoryItem> GetItems(Guid guid)
        {
            if(_categories.ContainsKey(guid)) {
                return _categories[guid].Items.Values;
            }

            return null;
        }