public IQueryable <Film> AutoCompleteFilm(string matching) { return(ExampleService.AllFilms().Where(x => x.Title.ToUpper().Contains(matching))); }
public IQueryable <Customer> AutoCompleteCustomer(string matching) { return(ExampleService.AllCustomers().Where(x => x.FullName.ToUpper().Contains(matching))); }