Exemplo n.º 1
0
        public List <Book> SearchForBookByCat(string cat)
        {
            UserSearching US = op.UserSearch("BBC");

            return(US.search(cat, con));
        }
Exemplo n.º 2
0
        public User SearchForUser(string UserName)
        {
            UserSearching US = op.UserSearch("U");

            return(US.search(UserName, con));
        }
Exemplo n.º 3
0
        public List <Book> SearchForBookByName(string name)
        {
            UserSearching US = op.UserSearch("BBN");

            return(US.search(name, con));
        }