Пример #1
0
        public SavedSearch Clone()
        {
            SearchItemSet s  = search.Clone();
            SearchOptions o  = options.Copy();
            SavedSearch   ss = new SavedSearch(name, s, o);

            return(ss);
        }
Пример #2
0
 public SavedSearch(string n, SearchItemSet s, SearchOptions o)
 {
     name    = n;
     search  = s;
     options = o;
 }