function CustomersController(Customer) {
var vm = this;
Customer.getAll().success(function(data) {
vm.allCustomers = data;
});
}
function UserService($http, $timeout, $q) {
this.getAll = getAll;
function getAll() {
return $http.get('./users.json');
}
}