// GET api/customers
 public IEnumerable<Customer> Get()
 {
     CustomerRepository r = new CustomerRepository();
     return r.GetAll();
 }