コード例 #1
0
ファイル: SearchController.cs プロジェクト: ewin66/SCOUT_NS
        public void SearchByType()
        {
            SearchDetail <T> details = SearchSettings.GetSearchDetailsFor <T>();

            if (details == null)
            {
                throw new NullReferenceException("Could not find SearchSettings for type " + typeof(T));
            }

            SearchByDetail(details);
        }