Example #1
0
        public IQueryable <Customer> GetCustomers()
        {
            var customers = cxtCustomer.GetAllCustomers();

            return(customers);
        }
Example #2
0
 public IQueryable <Customer> GetAllCustomers()
 {
     return(context.GetAllCustomers());
 }