Ejemplo n.º 1
0
        public IQueryable <Country> FindBy(System.Linq.Expressions.Expression <Func <Country, bool> > predicate)
        {
            CountryDAL           dalObject = new CountryDAL();
            IQueryable <Country> results   = dalObject.FindBy(predicate);

            return(results);
        }