public void AddSeach(IBookSeach bookSeach) { _seaches.Add(bookSeach); }
public IEnumerable <Book> Find(IBookSeach strategy, Dictionary <string, object> values) { return(strategy.Seach(_books, values)); }