Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/11 15:37:20 (13 years ago)
Author:
dhohl
Message:

additional functions vor query plugin
-delte
-gui components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/ViewModels/FilterModel.cs

    r6141 r6163  
    1515    public class FilterModel
    1616    {
     17        private  List<bool> boolStates;
    1718
    1819        private List<Filter> _filters;
     
    4647        }
    4748
     49
     50        public List<Boolean> GetBoolStates()
     51        {
     52            if (boolStates == null)
     53            {
     54                boolStates = new List<Boolean>();
     55                boolStates.Add(true);
     56                boolStates.Add(false);
     57            }
     58            return boolStates;
     59        }
     60
    4861    }
    4962}
Note: See TracChangeset for help on using the changeset viewer.